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

发布于 2024-11-18 13:45:00 字数 48 浏览 0 评论 0原文

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

Is it possibile to load buttons at runtime without using .xib files and connect the buttons to class properties anyway (without drag&drop)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

慢慢从新开始 2024-11-25 13:45:00

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


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

// implementation

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

With the "load without .xib" statement do you mean "instantiate in the code", right? in such case the answer is "yes, of course":


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

// implementation

UIButton *tmpButton = [UIButton buttonWithType:...];
...
self.myButtonProperty = tmpButton;
天赋异禀 2024-11-25 13:45:00

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

Yes, it is. You can create button object and add it to a view. More details can be found here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文