将XIB中的按钮链接到Storboard中的视图控制器

将XIB中的按钮链接到Storboard中的视图控制器

本文介绍了将XIB中的按钮链接到Storboard中的视图控制器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有按钮的XIB Viewcontroller.我也有一个storboard viewcontroller.我想知道是否有一种方法可以将按钮从xib视图控制器链接到情节提要视图控制器.

I have a XIB viewcontroller with a button in it. I also have a storboard viewcontroller. I would like to know if there is a way to link a button from the xib view controller to the storyboard viewcontroller.

推荐答案

简短答案:不,不使用界面生成器.

Short answer: No, not using interface builder.

您可以通过代码来完成.实例化两个视图控制器后,只需在情节提要视图控制器上设置相关属性即可.

You can do it in code though. Once you have the two view controllers instantiated just set the relevant property on your storyboard view controller.

这篇关于将XIB中的按钮链接到Storboard中的视图控制器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 00:36