美文网首页
oc踩过的一些循环引用坑

oc踩过的一些循环引用坑

作者: 敏中 | 来源:发表于2019-07-20 11:04 被阅读0次

1、注册、移除Notification

        - (void)viewWillAppear:(BOOL)animated {

                    [super viewWillAppear:animated];

                    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(test) name:@"test" object:nil];

        }

        - (void)viewWillDisappear:(BOOL)animated {

                    [super viewWillDisappear:animated];

                    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"test" object:nil];

           }

            就是在页面出现的时候注册通知,页面消失时移除通知。你这边可要注意了,一定要成双成对出现,通过指定的 name 移除通知,如果你只在viewWillAppear 中 addObserver没有在viewWillDisappear 中 removeObserver那么当消息发生的时候,你的方法会被调用多次。

2、在block中调用其它方法

改前:

        __weak typeof(self)weakself = self;

        [[BluetoothUtil sharedInstance] simpleGetBLEStateWithBlock:^(NSString *stateString)  {

                dispatch_async(dispatch_get_main_queue(), ^{           

                        [weakself BLEStartScan];             

                });

        }];

        - (void)BLEStartScan  {

                    __weak typeof(self) weakSelf = self;

        }

        block中调用self方法时需要把weaksekf也传递到方法中

        改后:

        __weak typeof(self)weakself = self;

        [[BluetoothUtil sharedInstance] simpleGetBLEStateWithBlock:^(NSString *stateString)  {

                dispatch_async(dispatch_get_main_queue(), ^{           

                        [weakself BLEStartScan:weakself];             

                 });

        }];

        - (void)BLEStartScan:(BindDeviceVC *)uself  {

                __weak typeof(self) weakSelf = uself;

        }

3、在block中不能自己引用自己

        [self.bridge registerHandler:@"unKnowTypeToQuestion" handler:^(id data, WVJBResponseCallback     responseCallback) {

                dispatch_async(dispatch_get_main_queue(), ^{

                        [WKWebVC showWithContro:self withUrlStr:homeUrl withTitle:title];

                });

        }];

        在block中不能自己引用自己,所以block中WKWebVC需要改为HJWebVC(随意一个别的);

weakself问题,不能使用self

        改后:

        [self.bridge registerHandler:@"unKnowTypeToQuestion" handler:^(id data, WVJBResponseCallback responseCallback) {

                dispatch_async(dispatch_get_main_queue(), ^{

                        [HJWebVC showWithContro:weakself withUrlStr:homeUrl withTitle:title];

                });

        }];

4、__weak和__block

        在cellForRowAtIndexPath中:

        改前:

        __block CommentInBelieveCell *cellBlock = cell;

        cell.zanBlock = ^{

        };

        __weak使用有问题

        __weak和__block

        __weak 主要用于防止block中的循环引用

        __block用于修饰某些block内部将要修改的外部变量

        改后:

        _weak CommentInBelieveCell *cellBlock = cell;

        cell.zanBlock = ^{

        };

5、cellForItemAtIndexPath中block中使用cell

        - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

                cell.buttonBlock = ^{

                        [collectionView reloadData];

                 };

        }

        其中cell和collectionView循环引用

        改后:

        - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

                 __weak typeof(self)weakSelf = self;

                cell.buttonBlock = ^{

                        [weakSelf.collectionView reloadData];

                };

        }

        - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

                cell.selectBlock = ^{

                        [tableView reloadData];

                };

        }

        其中cell和tableView循环引用

        改后:

        - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

                __weak typeof(self)weakSelf = self;

                 cell.selectBlock = ^{

                           [weakSelf.tableView reloadData];

                 };

           }

6、block中使用项目中自定义的log

        #define STLog(...) NSLog(@"%s(%p) %@", __PRETTY_FUNCTION__, self, [NSString stringWithFormat:__VA_ARGS__])

        block和self循环调用

        block中不使用STLog,必须使用观察数据的话使用NSLog

7、AFNetworking中,manage接收到请求结果后需要

        __weak typeof(manager) weakManager = manager;

        [weakManager invalidateSessionCancelingTasks:YES resetSession:YES];

相关文章

  • oc踩过的一些循环引用坑

    1、注册、移除Notification - (void)viewWillAppear:(BOOL)animated...

  • iOS循环引用的几种情况

    你踩过的坑里尽是前人的脚印。---------前言 在开发过程中我们会遇到一些循环引用的问题,像循环引用Block...

  • iOS 循环引用

    关于循环引用看着3篇文章就够了,拿走不谢! 循环引用 循环引用 OC中的block OC中的block 关于 bl...

  • 踩坑合集

    1、pagehelper 循环引用问题 解决方法: 方法一 方法二Pagehelper踩坑笔记[https://b...

  • NSTimer循环引用踩坑纪实

    在iOS开发中首页展示广告栏,并定时驱动的展示效果很常见,就目前我经手的项目来看,多数有这种展示,这种是需要用定时...

  • Swift与OC真正去理解Block解决循环引用的技巧

    Swift与OC真正去理解Block解决循环引用的技巧 Swift与OC真正去理解Block解决循环引用的技巧

  • Q: 内存泄漏可能会出现的几种原因

    一、三方框架二、Block循环引用三、delegate循环引用四、NSTimer循环引用五、非OC对象六、地图类七...

  • 交互设计师所要避免的几个坑

    前言 工作中难免会踩到几个坑,即使现在不踩以后还会踩,只有踩过才会深刻记住,踩过说明爱过!但是踩过的坑必须把坑填满...

  • iOS内存优化

    引起内存泄漏的原因 引起内存泄漏的原因主要有三类,如下 循环引用 强引用 非OC对象 1、循环引用。最简单的循环引...

  • 大数据爬坑收录

    爬出过的坑 大数据运维过程就是一个踩坑的过程。如下分享一些踩过的坑,以供参考。 Hive Spark Flink ...

网友评论

      本文标题:oc踩过的一些循环引用坑

      本文链接:https://www.haomeiwen.com/subject/xcvylctx.html