V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
daiyuechuan
V2EX  ›  iDev

collection view cell 用 prepareForSegue 的时候,始终无法获得 cell 的 indexPath

  •  
  •   daiyuechuan ·
    CrazyNeil · 2015-04-20 12:04:22 +08:00 · 3193 次点击
    这是一个创建于 3295 天前的主题,其中的信息可能已经有所发展或是发生改变。
    override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    
            let cell = sender as! CateCollectionViewCell
            let indexPath = self.collectionView!.indexPathForCell(cell)
    
    
            var vc = segue.destinationViewController as! PostQuestionViewController
            vc.cate = data[indexPath.row]
    
    
        }
    

    let indexPath = self.collectionView!.indexPathForCell(cell) 提示报错

    Cannot invoke 'indexPathForCell' with argument list of type '(CateCollectionViewCell)'

    CateCollectionViewCell是我自己创建的一个UICollectionViewCell

    1 条回复    2015-04-20 14:56:01 +08:00
    daiyuechuan
        1
    daiyuechuan  
    OP
       2015-04-20 14:56:01 +08:00   ❤️ 1
    找到问题了

    不能在UIViewController里直接这样来写,需要把控制器更改为UICollectionViewController
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   876 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 21:37 · PVG 05:37 · LAX 14:37 · JFK 17:37
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.