XCode/Objective-C,在运行时加载按钮(和其他 UI 元素)
是否可以在运行时加载按钮而不使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用“load without .xib”语句,您的意思是“在代码中实例化”,对吗?在这种情况下,答案是“是的,当然”:
With the "load without .xib" statement do you mean "instantiate in the code", right? in such case the answer is "yes, of course":
是的。您可以创建按钮对象并将其添加到视图中。更多详细信息可以在此处找到。
Yes, it is. You can create button object and add it to a view. More details can be found here.