码迷,mamicode.com
首页 > 其他好文 > 详细

UIStoryboard和UIResponder

时间:2015-12-18 21:20:31      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

 

6.17 UIStoryboard

//获取someboard中InitialViewController

UIStoryboard *story = [UIStoryboard storyboardWithName:@"someboard" bundle:nil];

self.window.rootViewController = [story instantiateInitialViewController];

//获取someboard中identity为storyboardID的控制器

UIStoryboard *story = [UIStoryboard storyboardWithName:@"someboard" bundle:nil];

self.window.rootViewController = [story instantiateViewControllerWithIdentifier:@"storyboardID"];

6.18 UIResponder

- (BOOL)becomeFirstResponder; // 成为第一响应者(文本框获得焦点并调出键盘)

- (BOOL)resignFirstResponder; // 取消第一响应者(文本框失去焦点,隐藏键盘)

UIStoryboard和UIResponder

标签:

原文地址:http://www.cnblogs.com/linxiu-0925/p/5058150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!