- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[[UIWindow alloc] init...
分类:
移动开发 时间:
2014-07-06 23:04:31
阅读次数:
270
一、非多线程HTTP请求如果不使用多线程,IOS的HTTP访问请求,以登录的模式为例,是这样://此为不正确的代码//成功进行登录验证后进入到下一ViewController-(void)presentToNextview{ //到下一界面}//登录验证-(void)loginCheck{ ...
分类:
移动开发 时间:
2014-07-05 17:47:46
阅读次数:
267
NSThread一.创建和启动线程1.开线程的几种方式1)先创建线程,后启动NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];[thread start];2)创建...
分类:
移动开发 时间:
2014-07-03 12:58:28
阅读次数:
207
本文转载至http://blog.csdn.net/davidsph/article/details/8171607IOS的多线程,一般分为三种方式:1,Thread;2,Cocoa operations;3,Grand Central Dispatch (GCD)(iOS4 才开始支持)下面简单说...
分类:
移动开发 时间:
2014-06-30 20:38:12
阅读次数:
401
摘要:1:ios通过抽象类NSOperation封装了gcd,让ios的多线程变得更为简单易用; 2:耗时的操作交给子线程来完成,主线程负责ui的处理,提示用户的体验 2:自定义operation继承自NSOperation,在子线程中下载图片; 3:保证图片只下载一次,还有保证下载...
分类:
移动开发 时间:
2014-06-26 13:09:37
阅读次数:
231