码迷,mamicode.com
首页 > 移动开发 > 详细

ios的一些经验记录1

时间:2016-03-07 22:16:36      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

1、UITextAlignment  ---> NSTextAlignment

2、找不到segue  

viewcontroller 与segue要对应

3、标题栏用NavigationControler + ViewController

4、如果模拟器不可运行,而真机可以运行,可能是库的require 和 optional设置错误

5、UIStoryBoard 载入的ViewController 标识和类名 如果没有对应,会崩溃。

6、UIBarButtonItem  用 NavigationBar  NavigationItem

7、autolayout 自动布局时可以用 multipiler来设置父子控件的排版,如果3:1 则父占3,子占1

8、加载storybaord中单独的view,view要自定义 controller.view

9、如果想在tableview 上有空白,不能用layoutguide

10、自定义表格https://cocoapods.org/pods/SegmentedController

11、

swift 和oc 使用函数做参数的格式有点不同

swift:

a、直接用函数做参数

在函数参数里写明类型即可。 

b、闭包,格式为

{ (parameters) -> return type in
statements
}

oc:

a、命名Block

声明Block的类型

(return type) (^blockName) (parameters);

b、匿名block

(^blockName) (parameters){

statements

}

 

12、UIActionSheet多项弹出框





ios的一些经验记录1

标签:

原文地址:http://www.cnblogs.com/xdao/p/ios_tips1.html

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