出口集合,我想访问我的UIimageview的属性(隐藏)

时间:2014-07-25 00:38:39

标签: ios uiimageview iboutletcollection

我只能访问我的outlet集合的ID,并且id没有隐藏属性

这是我的直销系列

@property (strong, nonatomic) IBOutletCollection(UIImageView) NSArray *hearts;

这是我尝试调用它,并将其更改为隐藏。

[self.hearts objectAtIndex:0].hidden =YES;

我不能,因为objectAtIndex只返回一个id

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

您可以尝试使用您期望的类型(例如,for (UIView *heartView in self.hearts))或首先投射objectAtIndex:0来枚举集合中的对象,然后设置隐藏属性。