如何通过单击按钮打开 .xib
谁能告诉我如何从 UIButton 打开新的 .xib?我的意思是,如果我单击一个按钮,它将打开一个新窗口。
Can anyone please give me some idea how can I open a new .xib from a UIButton? I meant that if I click on a button it will open a new window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将按钮的触摸内部事件链接到 UIViewController 子类中的 IBAction 方法。在该方法中,使用您的 xib 实例化一个新的 UIViewController:
然后,如果您有一个导航控制器,您想将其推送到:
Link the button's touch up inside event to an IBAction method in your UIViewController subclass. In that method, instantiate a new UIViewController with your xib using:
Then if you have a nav controller you want to push it onto: