XCode / Objective-C,在运行时加载按钮(和其他UI元素)

时间:2011-07-04 20:27:25

标签: objective-c xcode runtime

是否可以在运行时加载按钮而不使用.xib文件并将按钮连接到类属性(无需拖放;删除)?

2 个答案:

答案 0 :(得分:1)

使用“load without .xib”语句是指“在代码中实例化”,对吧?在这种情况下,答案是“是的,当然”:


// interface
@property (retain) UIButton *myButtonProperty;

// implementation

UIButton *tmpButton = [UIButton buttonWithType:...];
...
self.myButtonProperty = tmpButton;

答案 1 :(得分:0)

是的,确实如此。您可以创建按钮对象并将其添加到视图中。可以找到更多详细信息here