簡體   English   中英

如何在Swift中將NSIndexPath轉換為Int?

[英]How convert NSIndexPath to Int in Swift?

我需要UICollectionView的單元格的UICollectionView 我知道如何獲得它,但是問題是當我將此NSIndexpath轉換為Int 這是我的代碼。

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {

    let cell = sender as! UICollectionViewCell
    let index = self.collectionView!.indexPathForCell(cell)!

    let vc : VideosViewController = segue.destinationViewController as! VideosViewController
    vc.id_category =  self.result_category[index.row as Int]["id"].intvalue
}

您不需要將index.row轉換為Int ,它已經是一個Int了,請參閱Apple的聲明:

var row: Int { get }

在類NSIndexPath

只需執行vc.id_category = self.result_category[index.row]["id"].intvalue 只需注意數組index of out bound

希望對您有所幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM