Ios 多线程之NSOperation与NSOprationQueue
2021/5/18 13:25:45
本文主要是介绍Ios 多线程之NSOperation与NSOprationQueue,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在说NSOperation之前,先说一下gcd,gcd 技术是一个轻量的,底层实现隐藏的神奇技术,我们能够通过gcd和block轻松实现多线程编程,有时候,gcd相比其他系统提供的多线程方法更加有效,当然,有时候gcd不是最佳选择,另一个多线程编程的技术 NSOprationQueue 让我们能够将后台线程以队列方式依序执行,并提供更多操作的入口,这和 gcd 的实现有些类似。
这种类似不是一个巧合,在早期,MacOX 与 iOS 的程序都普遍采用Operation Queue来进行编写后台线程代码,而之后出现的gcd技术大体是依照前者的原则来实现的,而随着gcd的普及,在iOS 4 与 MacOS X 10.6以后,Operation Queue的底层实现都是用gcd来实现的。
所以,目前可以利用Operation Queue上层的封装,比较简易的实现更简单的多线程操作。
在复用控件,或者多任务执行的情况下,避免不了要开启多个线程和中断线程。
此时,我们就可以使用NSOperation来异步执行任务和中断任务。
包括IOS UITableView和UICollectionView中的cell复用状态下的多线程操作
@property (strong, nonatomic) NSOperationQueue *operationQueue; @property (strong, nonatomic) NSMutableDictionary *operationDict; - (NSMutableDictionary *)operationDict { if (!_operationDict) { _operationDict = [NSMutableDictionary dictionary]; } return _operationDict; } - (NSOperationQueue *)operationQueue { if (!_operationQueue) { _operationQueue = [[NSOperationQueue alloc] init]; _operationQueue.maxConcurrentOperationCount = 6; } return _operationQueue; } //控件显示开启任务 - (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath { if (![self.operationDict objectForKey:@(indexPath.item).stringValue]) { NSBlockOperation *operation = [self operationEvent:indexPath.item]; [self.operationQueue addOperation:operation]; [self.operationDict setObject:operation forKey:@(indexPath.item).stringValue]; } } //控件消失中断任务 - (void)collectionView:(UICollectionView *)collectionView didEndDisplayingCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath { if (self.operationDict[@(indexPath.item).stringValue]) { NSBlockOperation *operation = self.operationDict[@(indexPath.item).stringValue]; [operation cancel]; [self.operationDict removeObjectForKey:@(indexPath.item).stringValue]; } } //异步任务 - (NSBlockOperation *)operationEvent:(NSInteger)index { WEAKSELF NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:^{ }]; return operation; } - (void)dealloc { NSLog(@"释放%@",self); [self.operationQueue cancelAllOperations]; }
在隐藏和显示复用控件中中断和开启任务。可以在当前控件下处理各种复杂任务而不会冲突。例如图片加载,图片压缩,下载回调,异步读取资源等多种情况下都非常实用。
这篇关于Ios 多线程之NSOperation与NSOprationQueue的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创