Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我以编程方式创建标签,那么我如何创建出口来访问他的文本属性?谢谢...
你不创建一个出口——那只是为了在 IB 中连接东西。相反,您创建一个属性,并使用它来引用您的标签。因此,在您创建标签的 .h 文件中,有如下内容:
@property (strong, nonatomic) UILabel *myLabel;
创建标签时:
self.myLabel = [UILabel alloc] init .....
然后当你需要获取 text 属性时:
self.myLabel.text = @"New Text";