12 2015 档案

摘要:创建nib文件 cell.xib 在nib中拖一个UITableView出来,设置其reuse Identifier,再根据cell UI需要拖出view摆放好 创建ViewController及tableview 创建TableView在ViewController中的输出口(IBOutlet) 阅读全文
posted @ 2015-12-27 22:23 明明1109 阅读(267) 评论(0) 推荐(0) 编辑
摘要:修改导航栏颜 #define COLOR_TOMATO [UIColor colorWithRed:255/255.0f green:99/255.0f blue:71/255.0f alpha:1.0f] /*!< 番茄色 */ self.navigationController.navigati 阅读全文
posted @ 2015-12-16 22:30 明明1109 阅读(476) 评论(0) 推荐(0) 编辑
摘要:IOS提供了3种内省方法 1. isKindOfClass 检查当前实例是否为某类及其子类 UIView *b = [UIView new]; //... id a = b; if ([a isMemberOfClass:[UIView class]]) { UIView *view = (UIVi 阅读全文
posted @ 2015-12-09 23:09 明明1109 阅读(494) 评论(0) 推荐(0) 编辑