摘要: 标题中所说的3个方法,都是UIViewController的方法,跟UIViewController的view属性的生命周期息息相关。接下来我会一一阐述它们的作用以及它们之间的联系。一、loadView1.什么时候被调用?每次访问UIViewController的view(比如controller.view、self.view)而且view为nil,loadView方法就会被调用。2.有什么作用?loadView方法是用来负责创建UIViewController的view。3.默认实现是怎样的?默认实现即[super loadView]里面做了什么事情。1>它会先去查找与UIViewCo 阅读全文
posted @ 2013-12-11 21:50 徐明清 阅读(613) 评论(0) 推荐(0) 编辑
摘要: UILabel属性1.text:设置标签显示文本。label.text = @"我是Label";2.attributedText:设置标签属性文本。NSString*text=@"first";NSMutableAttributedString*textLabelStr=[[NSMutableAttributedStringalloc]initWithString:text];[textLabelStrsetAttributes:@{NSForegroundColorAttributeName:[UIColorlightGrayColor],NSFon 阅读全文
posted @ 2013-12-09 15:34 徐明清 阅读(927) 评论(0) 推荐(0) 编辑
摘要: iOS开发API常用英语名词0. indicating 决定1.in order to 以便2.rectangle bounds 矩形尺寸3.applied 应用4.entirety 全部5.technique 方法6.truncating 截短7.wrapping 换行8.string 字符串9.familiar style 简体10.The styled text 主题样式11.Constants 常量12.Attribute 属性13.Consecutive 连续14.Shrink 收缩15.Discussion 详述16.Rendering 渲染17.Pasting 粘贴18.Proh 阅读全文
posted @ 2013-12-09 15:15 徐明清 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 随着OS X 10.9 于 2013年6月10日在旧金山WWDC(world wide developer conference)上发布。是首个不使用猫科动物命名的系统,而转用加利福尼亚的产物。 该系统-Mavericks(巨浪)可免费在线升级,马上升级体验了一番。 后边才发现系统升级后,之前的命令 阅读全文
posted @ 2013-11-20 23:35 徐明清 阅读(1356) 评论(1) 推荐(0) 编辑