我有一个 IBoutletCollection
属性连接到 Storyboard
中的几个 UILabels
:
@property (weak, nonatomic) IBOutletCollection(UILabel) NSArray *labels;
叫
NSLog(@"%ld",(long)self.labels.count)
在 viewDidLoad
得到 0
作为结果。
我在这里得到空的 ivar 是什么问题?
Autolayout
有什么问题吗? (是的,我在 Storyboard
中使用它)
感谢您的建议!
将 weak
改为 strong
@property (strong, nonatomic) IBOutletCollection(UILabel) NSArray *labels;
关于ios - IBOutletCollection 未与 Storyboard 中的 UILabel 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32221139/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |