获取NSCollectionView中当前所选对象的索引

时间:2016-09-08 21:57:16

标签: objective-c nsarray nsdictionary nscollectionview

我希望获得当前所选NSCollectionView字典的索引。

我有这段代码,但它总是返回“0”。

- (IBAction)selectItem:(id)sender {
    NSInteger index = [[CollectionView subviews]  indexOfObject:self.representedObject];
    NSLog(@"%ld", (long)index);
}

我不知道我做错了什么。

0 个答案:

没有答案