【iOS】获取Storyboard生成的控件的方法

首先在工程的Info一栏,查看Storyboard的名称,一般是Main

【iOS】获取Storyboard生成的控件的方法_第1张图片


然后打开Storyboard,选中要获取的控件,这里是ViewController,在右侧Identity标签栏的Storyboard ID里填上名称,这里填为myViewController

【iOS】获取Storyboard生成的控件的方法_第2张图片


OK,现在就可以获取该ViewController了。

    //根据Bundle拿到Storyboard
    UIStoryboard *story = [UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]];
    //在Storyboard中通过ID获取到ViewController
    UIViewController *myViewController = [story instantiateViewControllerWithIdentifier:@"myViewController"];


你可能感兴趣的:(storyboard,iOS控件)