上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页
摘要: storyboard启动应用程序的大致流程 [原创] 转载请注明出处:http://i.cnblogs.com/EditPosts.aspx?postid=5395023 1. 用户点击APP图标——程序NSBundle(/private/var/mobile/Containers/Bundle/A 阅读全文
posted @ 2016-04-15 12:58 stevenwuzheng 阅读(978) 评论(0) 推荐(0) 编辑
摘要: loadView在App启动时到底都干了些什么? 查阅苹果官方文档如下: 1. 当你访问一个ViewController的view属性时,如果此时view的值是nil,那么,ViewController就会自动调用loadView这个方法。这个方法就会加载nib文件或者创建一个空的view对象(se 阅读全文
posted @ 2016-04-15 12:33 stevenwuzheng 阅读(309) 评论(0) 推荐(0) 编辑
摘要: Xib的使用与File'Owner总结 Xib的使用与File'Owner总结 一、XIB的适用范围 xib(也叫Nib)与storyboard一样是用来描述界面的。 storyboard描述的是比较大型的,大范围.适合描述界面跳转等.二、XIB的使用 Xib是小范围的的,是轻量级的.比较适合描述小 阅读全文
posted @ 2016-04-13 12:52 stevenwuzheng 阅读(1781) 评论(0) 推荐(0) 编辑
摘要: 1.关于Xib拖线错误 2.下面这个错误的根源其实是代码提示时直接敲下了回车,没看仔细,导致后来找了好久才发现该错误,郁闷啊! 阅读全文
posted @ 2016-04-13 12:38 stevenwuzheng 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 1. @class CLASS ;必须加分号,且卸载@interface之前 示例代码如下: #import <UIKit/UIKit.h> @class WZProduct; //注意必须加分号,因为是告诉.h文件,WZProduct是一个类,类似声明变量,是一句完整的话 @interface W 阅读全文
posted @ 2016-04-13 12:29 stevenwuzheng 阅读(298) 评论(0) 推荐(0) 编辑
摘要: NSMutableArray和NSArray的常用方法及相互转换 不可变数组对象: NSArray 创建的是静态数组,一旦创建之后,就再也不能添加和删除数组中的对象了。 [arr count]; 得到这个对象数组的长度。 [arr objectAtIndex: ...]; 传入数组脚标的id 得到数 阅读全文
posted @ 2016-04-12 13:36 stevenwuzheng 阅读(5298) 评论(0) 推荐(0) 编辑
摘要: iOS中break、continue、return三者的区别 1. break 直接跳出当前层次的循环。 如果嵌套循环如for中嵌套while,break只能跳出内层的while循环,while不会退出for循环。 另外break用在if...else,switch等代码块中,可以跳出整个判断代码块 阅读全文
posted @ 2016-04-12 12:28 stevenwuzheng 阅读(2784) 评论(0) 推荐(0) 编辑
摘要: 1. [array valueForKey:@"title"]; //Returns an array containing the results of invoking valueForKey: using key on each of the array's objects. 使数组中的每个对 阅读全文
posted @ 2016-04-11 19:08 stevenwuzheng 阅读(623) 评论(0) 推荐(0) 编辑
摘要: UITableViewCell在重用ID时为何加上Static关键字 先回顾一下iOS各种变量作用域和生命周期相关知识: 1、方法中临时变量存储在栈区,出了该方法,临时变量会被自动销毁。但是如果给方法中的临时变量前加上static,就算出了该方法,栈也不会回收该临时变量,直到程序退出才释放内存。 2 阅读全文
posted @ 2016-04-11 13:08 stevenwuzheng 阅读(1671) 评论(0) 推荐(1) 编辑
摘要: love paradise - 陈慧琳 You're always on my mind All day just all the time You're everything to me Brightest star to let me see You touch me in my dreams 阅读全文
posted @ 2016-04-10 12:44 stevenwuzheng 阅读(366) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页