标签: objective-c nsarray nsdictionary nscollectionview
我希望获得当前所选NSCollectionView字典的索引。
我有这段代码,但它总是返回“0”。
- (IBAction)selectItem:(id)sender { NSInteger index = [[CollectionView subviews] indexOfObject:self.representedObject]; NSLog(@"%ld", (long)index); }
我不知道我做错了什么。