码迷,mamicode.com
首页 >  
搜索关键字:uistoryboard    ( 70个结果
StoryBoard ID && Restoration ID
使用storyboard布局界面的时候,对于这2个ID存在疑惑,查到后拿来分享一下! StoryBoard ID && Restoration ID StoryBoard ID 是用来区分故事板中控制器的; 获取Storyboard + (UIStoryboard *)storyboardWithN ...
分类:其他好文   时间:2017-10-02 09:35:04    阅读次数:139
XCode warning:“View Controller” is unreachable because it has no entry points
Unsupported Configuration: “View Controller” is unreachable because it has no entry points, and no identifier for runtime access via -[UIStoryboard in ...
分类:其他好文   时间:2017-07-26 19:22:37    阅读次数:220
uistoryboard跳转界面
/**1.创建Storyboard,加载Storyboard的名字,这里是自己创建的Storyboard的名字*/ UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; UIViewContr... ...
分类:其他好文   时间:2017-05-03 13:06:47    阅读次数:139
iOS开发-UI (十)StoryBoard
今天这篇是UI的最后一篇了,后面再整理网络篇 知识点 1.UIStoryBoard介绍 2. UIStoryBoard的界面跳转 3. UIStoryBoard界面之间的传值 UIStoryBoard介绍 UIStoryBoard是你可以用来定义用户界面的一种新的方式,像xib。与xib不同的是它可 ...
分类:移动开发   时间:2017-02-15 00:51:41    阅读次数:270
iOS开发-UI (七)StoryBoard
知识点 1.UIStoryBoard介绍 2. UIStoryBoard的界面跳转 3. UIStoryBoard界面之间的传值 UIStoryBoard介绍 UIStoryBoard是你可以用来定义用户界面的一种新的方式,像xib。与xib不同的是它可以同时管理多个ViewController,而 ...
分类:移动开发   时间:2017-01-21 23:26:45    阅读次数:235
Storyboard & XIB 自己的理解
//1.storyboard //(1) //此处bundle:nil 等价于 [NSBundle mainBundle] // SecondViewController *secondVc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil ...
分类:其他好文   时间:2016-12-29 19:50:27    阅读次数:188
iOS 高阶
1.UIStoryBoard 2. segue跳转传值 3. UIColor配色 //1. 十进制配色 [UIColor colorWithRed:163.0/255.0 green:148.0/255.0 blue:128.0/255.0 alpha:1.0]; //2. 设置16进制颜色(同上) ...
分类:移动开发   时间:2016-12-04 19:48:24    阅读次数:257
iOS开发基础知识--碎片2
iOS开发基础知识--碎片2 六:获得另一个控件器,并实现跳转 UIStoryboard* mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil]; UIViewController *regis ...
分类:移动开发   时间:2016-08-18 10:03:45    阅读次数:173
ios页面弹出方式《笔记》
1、presentViewController 方式,动画效果是从底部弹出,主要用在除导航类页面的弹出 let anotherVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("a ...
分类:移动开发   时间:2016-08-15 18:50:58    阅读次数:233
iOS delegate, 代理/委托与协议.
之前知知道iOS协议怎么写, 以为真的跟特么java接口一样, 后来发现完全不是. 首先, 说说应用场景, 就是当你要用一个程序类, 或者说逻辑类, 去控制一个storyboard里面的label, 发现如果直接用 UIStoryboard *mainStoryboard = [UIStoryboa ...
分类:移动开发   时间:2016-06-27 23:20:48    阅读次数:343
70条   1 2 3 4 ... 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!