IOS里的多线程编程详解

以下是开发初期收集整理的一点资料

多线程之NSInvocationOperation

多线程编程是防止主线程堵塞,增加运行效率等等的最佳方法。而原始的多线程方法存在很多的毛病,包括线程锁死等。在Cocoa中,Apple提供了NSOperation这个类,提供了一个优秀的多线程编程方法。

本次介绍NSOperation的子集,简易方法的NSInvocationOperation:

@implementation MyCustomClass

- (void)launchTaskWithData:(id)data

{

//创建一个NSInvocationOperation对象,并初始化到方法

//在这里,selector参数后的值是你想在另外一个线程中运行的方法(函数,Method)

//在这里,object后的值是想传递给前面方法的数据

NSInvocationOperation* theOp = [[NSInvocationOperation alloc] initWithTarget:self

selector:@selector(myTaskMethod:) object:data];

// 下面将我们建立的操作“Operation”加入到本地程序的共享队列中(加入后方法就会立刻被执行)

// 更多的时候是由我们自己建立“操作”队列

[[MyAppDelegate sharedOperationQueue] addOperation:theOp];

}

// 这个是真正运行在另外一个线程的“方法”

- (void)myTaskMethod:(id)data

{

// Perform the task.

}

@end一个NSOperationQueue 操作队列,就相当于一个线程管理器,而非一个线程。因为你可以设置这个线程管理器内可以并行运行的的线程数量等等。下面是建立并初始化一个操作队列:

@interface MyViewController : UIViewController {

NSOperationQueue *operationQueue;

//在头文件中声明该队列

}

@end

@implementation MyViewController

- (id)init

{

self = [super init];

if (self) {

operationQueue = [[NSOperationQueue alloc] init]; //初始化操作队列

[operationQueue setMaxConcurrentOperationCount:1];

//在这里限定了该队列只同时运行一个线程

//这个队列已经可以使用了

}

return self;

}

- (void)dealloc

{

[operationQueue release];

//正如Alan经常说的,我们是程序的好公民,需要释放内存!

[super dealloc];

}

@end简单介绍之后,其实可以发现这种方法是非常简单的。很多的时候我们使用多线程仅仅是为了防止主线程堵塞,而NSInvocationOperation就是最简单的多线程编程,在iPhone编程中是经常被用到的。

///////////////////////////////////////////////////////////////////////////////////////////////////

1 在主线程里加入一个loading画面……

2 {

3 [window addSubview:view_loading];

4 [NSThread detachNewThreadSelector:@selector(init_backup:) toTarget:self withObject:nil];

5 }

可以通过performSelectorOhMainThread更新UI元素,比如设置进度条等等。最后消除loading画面,载入主View。

7 - (void)init_backup:(id)sender

8 {

9 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

10

11 // ...

12 int i = status;

13 [self performSelectorOnMainThread:@selector(show_loading:) withObject:[NSNumber numberWithInt:i] waitUntil Done:NO];

14

15 [view_loading removeFromSuperview];

16 [window addSubview:tabcontroller_main.view];

17 [pool release];

18 }

///////////////////////////////////////////////////////

利用iphone的多线程实现和线程同步

从接口的定义中可以知道,NSThread和大多数iphone的接口对象一样,有两种方式可以初始化:

一种使用initWithTarget :(id)target selector:(SEL)selector object:(id)argument,但需要负责在对象的retain count为0时调用对象的release方法清理对象。

另一种则使用所谓的convenient method,这个方便接口就是detachNewThreadSelector,这个方法可以直接生成一个线程并启动它,而且无需为线程的清理负责。

#import

@interface SellTicketsAppDelegate : NSObject {

int tickets;

int count;

NSThread* ticketsThreadone;

NSThread* ticketsThreadtwo;

NSCondition* ticketsCondition;

UIWindow *window;

}

@property (nonatomic, retain) IBOutlet UIWindow *window;

@end

然后在实现中添加如下代码:

//  SellTicketsAppDelegate.m

//  SellTickets

//

//  Created by sun dfsun2009 on 09-11-10.

//  Copyright __MyCompanyName__ 2009. All rights reserved.

//

#import "SellTicketsAppDelegate.h"

@implementation SellTicketsAppDelegate

@synthesize window;

- (void)applicationDidFinishLaunching:(UIApplication *)application {

tickets = 100;

count = 0;

// 锁对象

ticketCondition = [[NSCondition alloc] init];

ticketsThreadone = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];

[ticketsThreadone setName:@"Thread-1"];

[ticketsThreadone start];

ticketsThreadtwo = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];

[ticketsThreadtwo setName:@"Thread-2"];

[ticketsThreadtwo start];

//[NSThread detachNewThreadSelector:@selector(run) toTarget:self withObject:nil];

// Override point for customization after application launch

[window makeKeyAndVisible];

}

- (void)run{

while (TRUE) {

// 上锁

[ticketsCondition lock];

if(tickets > 0)

{

[NSThread sleepForTimeInterval:0.5];

count = 100 - tickets;

NSLog(@"当前票数是:%d,售出:%d,线程名:%@",tickets,count,[[NSThread currentThread] name]);

tickets--;

}else

{

break;

}

[ticketsCondition unlock];

}

}

-         (void)dealloc {

[ticketsThreadone release];

[ticketsThreadtwo release];

[ticketsCondition release];

[window release];

[super dealloc];

}

@end

-------------------------------------------------------------------------------------

// 定义

#import

@interface ThreadSyncSampleViewController : UIViewController {

int _threadCount;

NSCondition *_myCondition;

}

@end

//实现文件如下:

#import "ThreadSyncSampleViewController.h"

@implementation ThreadSyncSampleViewController

/*

// The designated initializer. Override to perform setup that is required before the view is loaded.

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {

if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {

// Custom initialization

}

return self;

}

*/

/*

// Implement loadView to create a view hierarchy programmatically, without using a nib.

- (void)loadView {

}

*/

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.

- (void)viewDidLoad {

[super viewDidLoad];

//

//_myCondition = nil;

//

_myCondition = [[NSCondition alloc] init];

//

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:30

target:self

selector:@selector(threadTester)

userInfo:nil

repeats:YES];

[timer fire];

}

- (void)threadTester{

[_myCondition lock];

_threadCount = -2;

//如果有n个要等待的thread,这里置成 -n

[_myCondition unlock];

//

NSLog(@"");

NSLog(@"------------------------------------------------------------------------------");

[NSThread detachNewThreadSelector:@selector(threadOne) toTarget:self withObject:nil];

[NSThread detachNewThreadSelector:@selector(threadTwo) toTarget:self withObject:nil];

[NSThread detachNewThreadSelector:@selector(threadThree) toTarget:self withObject:nil];

return;

}

- (void)threadOne{

NSLog(@"@@@ In thread 111111 start.");

[_myCondition lock];

int n = rand()%5 + 1;

NSLog(@"@@@ Thread 111111 Will sleep %d seconds ,now _threadCount is : %d",n,_threadCount);

sleep(n);

//[NSThread sleepForTimeInterval:n];

_threadCount ++ ;

NSLog(@"@@@ Thread 111111 has sleep %d seconds ,now _threadCount is : %d",n,_threadCount);

[_myCondition signal];

NSLog(@"@@@ Thread 1111111 has signaled ,now _threadCount is : %d",_threadCount);

[_myCondition unlock];

NSLog(@"@@@ In thread one complete.");

[NSThread exit];

return;

}

- (void)threadTwo{

NSLog(@"### In thread 2222222 start.");

[_myCondition lock];

int n = rand()%5 + 1;

NSLog(@"### Thread 2222222 Will sleep %d seconds ,now _threadCount is : %d",n,_threadCount);

sleep(n);

//   [NSThread sleepForTimeInterval:n];

_threadCount ++ ;

NSLog(@"### Thread 2222222 has sleep %d seconds ,now _threadCount is : %d",n,_threadCount);

[_myCondition signal];

NSLog(@"### Thread 2222222 has signaled ,now _threadCount is : %d",_threadCount);

[_myCondition unlock];

//_threadCount ++ ;

NSLog(@"### In thread 2222222 complete.");

[NSThread exit];

return;

}

- (void)threadThree{

NSLog(@"<<< In thread 333333 start.");

[_myCondition lock];

while (_threadCount < 0) {

[_myCondition wait];

}

NSLog(@"<<< In thread 333333 ,_threadCount now is %d ,will start work.",_threadCount);

[_myCondition unlock];

NSLog(@"<<< In thread 333333 complete.");

[NSThread exit];

return;

}

/*

// Override to allow orientations other than the default portrait orientation.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

// Return YES for supported orientations

return (interfaceOrientation == UIInterfaceOrientationPortrait);

}

*/

- (void)didReceiveMemoryWarning {

// Releases the view if it doesn't have a superview.

[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.

}

- (void)viewDidUnload {

// Release any retained subviews of the main view.

// e.g. self.myOutlet = nil;

}

- (void)dealloc {

[_myCondition release];

[super dealloc];

}

@end

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,874评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,102评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,676评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,911评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,937评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,935评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,860评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,660评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,113评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,363评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,506评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,238评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,861评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,486评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,674评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,513评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,426评论 2 352

推荐阅读更多精彩内容

  • 1、简介:1.1 iOS有三种多线程编程的技术,分别是:1.、NSThread2、Cocoa NSOperatio...
    LuckTime阅读 1,345评论 0 1
  • 一、多线程基础 基本概念 进程进程是指在系统中正在运行的一个应用程序每个进程之间是独立的,每个进程均运行在其专用且...
    AlanGe阅读 546评论 0 0
  • 多线程基本概念 单核CPU,同一时间cpu只能处理1个线程,只有1个线程在执行 。多线程同时执行:是CPU快速的在...
    WeiHing阅读 705评论 1 5
  • 原文出处:容芳志的博客 简介 iOS有三种多线程编程的技术,分别是: (一)NSThread (二)Cocoa N...
    sky_kYU阅读 605评论 0 1
  • 重点之一就是怎么理解“考纲和考纲所列词汇”,如何把握考纲的引导性和日常教学的考纲适用性。所以也给制作考纲的专家提出...
    静_静_阅读 96评论 0 1