我有一个 IBoutletCollection 属性连接到 Storyboard 中的几个 UILabels :
@property (weak, nonatomic) IBOutletCollection(UILabel) NSArray *labels;
叫
NSLog(@"%ld",(long)self.labels.count) 在 viewDidLoad 之后
得到 0 作为结果。
我在这里得到空的 ivar 是什么问题?
Autolayout 有什么问题吗? (是的,我在 Storyboard 中使用它)
感谢您的建议!
Best Answer-推荐答案 strong>
将 weak 改为 strong
@property (strong, nonatomic) IBOutletCollection(UILabel) NSArray *labels;
关于ios - IBOutletCollection 未与 Storyboard 中的 UILabel 连接,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/32221139/
|