//// ViewController.m// thread//// Created by City--Online on 15/3/31.// Copyright (c) 2015年 City--Online. All rights reserved.//#import "ViewCont...
分类:
其他好文 时间:
2015-03-31 17:35:01
阅读次数:
107
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UILabel *remindLabel;@end@implementation ViewController- (v...
分类:
编程语言 时间:
2015-03-29 17:56:08
阅读次数:
142
框架名为:UIImage+WebCache.h 继承于UIimageView
框架里面加载网络图片的方法共4中:分别为1.普通加载 2.线程NSThread 3.
#import "ViewController.h"
#import "UIImage+WebCache.h"
@interface
ViewController ()
@en...
分类:
移动开发 时间:
2015-03-28 08:57:23
阅读次数:
160
线程使用Instruments的CPU strategy view查看代码如何在多核CPU中执行。创建线程可以使用POSIX 线程API,或者NSThread(封装POSIX 线程API)。下面是并发4个线程在一百万个数字中找最小值和最大值的pthread例子:#import struct thre...
分类:
移动开发 时间:
2015-03-19 20:14:46
阅读次数:
160
一、创建多线程的五种方式1.开启线程的方法一 NSThread * thread=[[NSThread alloc] initWithTarget:self selector:@selector(_update) object:nil];2.开启线程的方法二 [NSThread deta...
分类:
移动开发 时间:
2015-03-17 09:01:53
阅读次数:
177
http://www.cnblogs.com/kenshincui/p/3983982.htmliOS开发系列--并行开发其实很容易2014-09-20 23:34 by KenshinCui,9738阅读,19评论,收藏,编辑--多线程开发概览大家都知道,在开发过程中应该尽可能减少用户等待时间,让...
分类:
移动开发 时间:
2015-03-15 22:49:55
阅读次数:
172
多线程1.NSThread1> 开线程的几种方式* 先创建,后启动NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];[thread start];* 直接启动[NS...
分类:
编程语言 时间:
2015-03-14 07:22:03
阅读次数:
148
多线程NSThread:1.NSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(thread) object:nil];[thread start];2.[NSThread detachNewThrea...
分类:
移动开发 时间:
2015-03-10 19:16:29
阅读次数:
123
初始化:1.动态方法- (id)initWithTarget:(id)target selector:(SEL)selector object:(id)argument;// 初始化线程NSThread *thread = [[NSThread alloc] initWithTarget:self ...
分类:
移动开发 时间:
2015-03-06 19:00:13
阅读次数:
150
1.下面的代码,有2点需要注意,1>就是 就是thread:所传得参数,这里传得的是nsarray 当然也可以传其他的类型。2>[self performSelectorOnMainThread:@selector(update) withObject:nil waitUntilDone:YES]....
分类:
编程语言 时间:
2015-03-03 20:23:41
阅读次数:
180