iOS UIView的addSubview:和removeFromSuperview方法

昨天和各位老师讨论了如题的问题: osc:http://www.oschina.net/question/260754_107391 今天整理一下,如果还有什么不对的,请批评指正,谢谢! 问题描述: 一个UIView(bView)经过alloc、i...

nil和release的作用与使用

对于一个指向对象的变量,它里面存储的是一个地址,一个指向内存中某块区域的地址。 nil:的作用就是将这个变量置为空,不指向任何地址。 release:的作用是将这个变量指向的内存中的对象的引...

2013/04/18 16:58
182
响应事件传递nextResponder

官方解释 UIView implements this method by returning the UIViewController object that manages it (if it has one) or its superview (if it doesn’t); UIViewController implements t...

IOS 延时加载TableView中Cell中的图片

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { // do something [NSThread detachNewThreadSelector:@sele...

IOS 字符串的Format可以对数值四舍五入

NSLog(@"%@", [NSString stringWithFormat:@"%.0f", 1.0003]); NSLog(@"%@", [NSString stringWithFormat:@"%.0f", 1.9003]); NSLog(@"%@", [NSString stringWithFormat:@"%.0f", 1.5003]); ...

2013/02/20 10:41
1.9K
ios判断系统版本

#define iPhone5 ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 1136), [[UIScreen mainScreen] currentMode].size) : NO) 用时候直...

ios中获取一个唯一的字符串(利用UUID)

- (NSString *)getUniqueStrByUUID { CFUUIDRef uuidRef = CFUUIDCreate(NULL); CFStringRef uuidStrRef= CFUUIDCreateString(NULL, uuidRef); CFRelease(uuidRef); NSStrin...

2013/01/11 16:31
2.8K

没有更多内容

加载失败,请刷新页面