MainViewController.h
@interface RootViewController : UIViewController
@property(nonatomic, retain)NSDictionary *dic;
@property(nonatomic, retain)NSArray *allKeys;
MainViewController.m
- (void)view...
分类:
其他好文 时间:
2014-10-30 11:52:11
阅读次数:
188
RootViewController.h
@interface RootViewController : UIViewController {
BOOL Close[15]; //用于存放每一组的收起展开状态 YES 是收起 NO是展开
UITableView *_tableView;
}
@property(nonatomic, retain)NSArray *da...
分类:
其他好文 时间:
2014-10-30 11:50:52
阅读次数:
113
设置带有导航栏的根视图控制器
RootViewController.h
@interface RootViewController : UIViewController
{
UITableView *_tableView;
}
@property(nonatomic, retain)NSArray *data; //存放原本的数据
@property(nonatomic, reta...
分类:
其他好文 时间:
2014-10-30 11:50:28
阅读次数:
182
细数AutoLayout以来UIView和UIViewController新增的相关API – UIViewController篇UILayoutSupport@property(nonatomic,readonly,retain)idtopLayoutGuideNS_AVAILABLE_IOS(7...
1 2.@property属性的用法2 * weak(assign) : 代理\UI控件3 * strong(retain) : 其他对象(除代理\UI控件\字符串以外的对象)4 * copy : 字符串5 * assign : 非对象类型(基本数据类型int\float\BOOL\枚举\结构体)
分类:
其他好文 时间:
2014-10-25 15:47:11
阅读次数:
166
ViewController.h
#import
@interface ViewController : UIViewController
{
UIImage *_image;
NSInteger _index;
}
@endViewController.m
#import "ViewController.h"
#import "Person.h"
@interface...
分类:
其他好文 时间:
2014-10-23 14:26:57
阅读次数:
161
我们都知道,一个手机,它的内存是有限的,而每一个手机应用都是需要一定空间,当应用所占空间过大时,系统就会发出警告,怎样在有限的空间中,做到更高效实用美观的效果呢?
这时候就牵涉到OC中得内存管理了.
在OC这门语言中,是不存在垃圾回收机制的,但是它采用了另外一种形式或者说方法,实现这一个空间回收的效果,那就是引用计数器.
别看-引用计数器,这个名字很高大上,实际是它就是一...
分类:
其他好文 时间:
2014-10-22 22:06:30
阅读次数:
160
1 1> UIButton内部默认有个UIImageView、UILabel控件,可以分别用下面属性访问: 2 @property(nonatomic,readonly,retain) UIImageView *imageView; 3 @property(nonatomic,readonly,r....
分类:
移动开发 时间:
2014-10-21 15:20:44
阅读次数:
186
1.Quartz2D的内存管理使用含有“create”或者“copy”的函数创建的对象,使用完后必须释放,否则将导致内存泄漏。使用不含有“create”或“copy”的函数获取的对象,则不需要释放。如果retain了一个对象,不再使用时,需要讲起release掉。可以使用Quartz2D的函数来指定...
分类:
其他好文 时间:
2014-10-20 23:01:59
阅读次数:
288
1、ARC中,对于调用私有函数调用中,返回值是void 或者参数本身是基本类型的,如果使用了id,因为ARC中会对参数和返回值进行retain,所以都会产生objc_retain的crash。
delloc函数是异步的:当对对象调用release的时候,即使该对象的retaincount = 0,
该对象的delloc函数也不是同步调用的。
例子:UIWebViewWk的destory函...
分类:
移动开发 时间:
2014-10-20 19:32:47
阅读次数:
589