博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS开发中多线程的使用
阅读量:6500 次
发布时间:2019-06-24

本文共 1814 字,大约阅读时间需要 6 分钟。

一、创建多线程的五种方式

1.开启线程的方法一

NSThread * thread=[[NSThread alloc] initWithTarget:self selector:@selector(_update) object:nil];

2.开启线程的方法二 

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

3.开启线程的方法三

[self performSelectorInBackground:@selector(_update) withObject:nil];

4.开启线程的方法四

NSOperationQueue *queue=[[NSOperationQueue alloc] init];    [queue addOperationWithBlock:^{        for(int i=0;i<50;i++){            printf("子线程\n");        }    }];

5.开启线程的方法五

//第一步开启线程池        NSOperationQueue * queue=[[NSOperationQueue alloc] init];    //设置并发数目    [queue setMaxConcurrentOperationCount:2];        //第二部创建多线程添加到线程池    NSInvocationOperation * thread1=[[NSInvocationOperation alloc] initWithTarget:self selector:@selector(_update1) object:nil];    NSInvocationOperation *thread2=[[NSInvocationOperation alloc] initWithTarget:self selector:@selector(_update2) object:nil];        [thread1 setQueuePriority:NSOperationQueuePriorityVeryLow];    [thread2 setQueuePriority:NSOperationQueuePriorityVeryHigh];        [queue addOperation:thread1];    [queue addOperation:thread2];
二、多线程应用实例,加载图片。

1.核心思想

  考虑到如果加载网络图片会延迟,在一个主线程加载会影响控件的渲染,此时可以采取多线程,异步加载完成后刷新UI。

2.实现思路

  通过为UIImageView 增加类目来实现多线程下载。

  主要代码:

#import "UIImageView+thread.h"@implementation UIImageView(load)- (void) setImageWithUrl:(NSString *)url{    [self performSelectorInBackground:@selector(_loadImage:) withObject:url];}- (void) _loadImage:(NSString *)u{    @autoreleasepool {                NSURL *url=[NSURL URLWithString:u];        NSData *data=[NSData dataWithContentsOfURL:url];        UIImage *image=[UIImage imageWithData:data];                [self performSelectorOnMainThread:@selector(setImage:) withObject:image waitUntilDone:NO];            }}

 

作者:
出处:
 
本文版权归和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
 
你可能感兴趣的文章
Linux 中C/C++ search path(头文件搜索路径)
查看>>
Java基础-数组常见排序方式
查看>>
使用C# (.NET Core) 实现迭代器设计模式 (Iterator Pattern)
查看>>
(转)深入浅出数据库索引原理
查看>>
VirtualBox中的虚拟机在Ubuntu 下无法启动之问题解决
查看>>
form表单右边弹窗提示不能为空
查看>>
php实现合并多个数组
查看>>
ajax application/json 的坑
查看>>
amazeui学习笔记--css(常用组件16)--文章页Article
查看>>
在recycler中写的布局不起作用
查看>>
ios蓝牙开发(二)ios连接外设的代码实现
查看>>
java 反射
查看>>
ASP.NET Core Web API 与 SSL
查看>>
思维体系---技术思维、业务数据思维、产品思维、复合思维
查看>>
强大的原生DOM选择器querySelector和querySelectorAll
查看>>
Monkey测试命令【学习笔记】
查看>>
MySQL表结构变更,不可不知的Metadata Lock
查看>>
LeetCode - 766. Toeplitz Matrix
查看>>
基于Docker的UI自动化初探
查看>>
生产BackPressure 的代码
查看>>