摘要:
10.6 - Apple and our customers place a high value on simple, refined, creative, well thought through interfaces. They take more work but are worth it.... 阅读全文
摘要:
想要取消执行延时调用的方法: [[self class] cancelPreviousPerformRequestsWithTarget:self selector:@selector(hideDialogue:) object:sender]; 阅读全文
摘要:
在项目中发现一个问题:创建一个UIScrollView 上面放一个scrollView或者TableView,拖动scrollview或TableView 画面出现一闪一闪的情况。解决办法设置一下UIScrollView的contentSize如果你是上下滑动 scrollView.contentS... 阅读全文
摘要:
//委托的协议定义@protocol UpdateDelegate - (void)update;@end@interface Test : NSObject//委托变量定义@property (nonatomic, weak) id delegate;//blocktypedef void (^U... 阅读全文
摘要:
BlockTest.h#import typedef void (^didFinishBlock)(NSString *str);typedef void (^didFailBlock)(NSString *str);@interface BlockTest : NSObject+(void)jus... 阅读全文
摘要:
Documents:保存应用运行时生成的需要持久化的数据,iTunes同步设备时会备份该目录。例如,游戏应用可将游戏存档保存在该目录tmp:保存应用运行时所需的临时数据,使用完毕后再将相应的文件从该目录删除。应用没有运行时,系统也可能会清除该目录下的文件。iTunes同步设备时不会备份该目录Libr... 阅读全文
摘要:
1.NSNotification和KVO的区别和用法是什么 ?什么时候该使用通知,什么时候该使用KVO,它们在实现上有什么区别?如果用delegate 和protocol来实现类似的功能可能吗?如果可能会有什么潜在的问题?如果不能为什么 ?KVO只能监测属性的变化,但是实现了自动监测,当属性值变化时... 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
1.HTTP协议之请求HTTP请求由三部分组成,分别是:请求行、消息报头、请求正文请求行格式如下:Method Request-URI HTTP-Version CRLF .其中 Method表示请求方法;Request-URI是一个统一资源标识符;HTTP-Version表示请求的HTTP协议版... 阅读全文