真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS中MRC下block循環(huán)引用的示例分析

這篇文章將為大家詳細(xì)講解有關(guān)iOS中MRC下block循環(huán)引用的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

專注于為中小企業(yè)提供網(wǎng)站建設(shè)、成都做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)偏關(guān)免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

示例:

  //注意此__block會復(fù)制一份指針出來 一次原始的指針如果置為nil的話,此處復(fù)制出來的指針還是野指針 
    __block __typeof(self)weakSelf = self; 
    //__weak __typeof(self)weakSelf = self; 
    //__weak Person *weakSelf = self; 
    void (^block)(void) = ^(void){ 
      //NSLog(@"name --> is %@", self.name); 
      //NSLog(@"name --> is %@", weakSelf.name); 
      //這樣判斷會crash 此時weakSelf為野指針 
      //weakSelf 這時候是個野指針。。。野指針也是指針對吧?反正,這個野指針并不為NULL,雖然它指向的內(nèi)存并未有什么鳥用, 
      //然而代碼并不知道。所以 執(zhí)行[weakSelf doSomething]; 必然閃退。 
      //注意此__block會復(fù)制一份指針出來 一次原始的指針如果置為nil的話,此處復(fù)制出來的指針還是野指針 
//      if (weakSelf) { 
//        NSLog(@"name --> is %@", weakSelf.name); 
//      } 
      //malloc(22); 
//      malloc_zon 
      //這并沒有什么卵用。。。weakSelf 已經(jīng)是野指針 照樣crash 
//      __strong __typeof(weakSelf) strongSelf = weakSelf; 
//      if (weakSelf) { 
//        NSLog(@"name --> is %@", strongSelf.name); 
//      } 
      if (malloc_zone_from_ptr(weakSelf)) { 
        NSLog(@"name --> is %@", weakSelf.name); 
      }
// 
// ViewController.m 
// test_mrc_block_self_01 
// 
// Created by jeffasd on 2017/12/1. 
// Copyright © 2017年 jeffasd. All rights reserved. 
// 
#import "ViewController.h" 
#import "Person.h" 
@interface ViewController () 
@property (nonatomic, copy) NSString *name; 
@end 
@implementation ViewController 
- (void)viewDidLoad { 
  [super viewDidLoad]; 
  self.view.backgroundColor = [UIColor whiteColor]; 
  self.name = @"xiaoming"; 
} 
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ 
  self.view.backgroundColor = [UIColor cyanColor]; 
//  void (^block)(void) = ^(void){ 
//    NSLog(@"name --> is %@", self.name); 
//  }; 
//   
//   
//   
//  for (int i = 0; i < 30; i++) { 
//    block(); 
//  } 
  Person *xiaoming = [[Person alloc] init]; 
  //[xiaoming retain]; 
  [xiaoming release]; 
//  xiaoming = nil; 
  xiaoming = NULL; 
} 
- (void)didReceiveMemoryWarning { 
  [super didReceiveMemoryWarning]; 
  // Dispose of any resources that can be recreated. 
} 
@end
// 
// Person.m 
// test_mrc_block_self_01 
// 
// Created by jeffasd on 2017/12/1. 
// Copyright © 2017年 jeffasd. All rights reserved. 
// 
#import "Person.h" 
#include  
@interface Person () 
@property (nonatomic, copy) NSString *name; 
@end 
@implementation Person 
- (instancetype)init{ 
  if (self = [super init]) { 
    self.name = @"xiaoming"; 
    //注意此__block會復(fù)制一份指針出來 一次原始的指針如果置為nil的話,此處復(fù)制出來的指針還是野指針 
    __block __typeof(self)weakSelf = self; 
    //__weak __typeof(self)weakSelf = self; 
    //__weak Person *weakSelf = self; 
    void (^block)(void) = ^(void){ 
      //NSLog(@"name --> is %@", self.name); 
      //NSLog(@"name --> is %@", weakSelf.name); 
      //這樣判斷會crash 此時weakSelf為野指針 
      //weakSelf 這時候是個野指針。。。野指針也是指針對吧?反正,這個野指針并不為NULL,雖然它指向的內(nèi)存并未有什么鳥用, 
      //然而代碼并不知道。所以 執(zhí)行[weakSelf doSomething]; 必然閃退。 
      //注意此__block會復(fù)制一份指針出來 一次原始的指針如果置為nil的話,此處復(fù)制出來的指針還是野指針 
//      if (weakSelf) { 
//        NSLog(@"name --> is %@", weakSelf.name); 
//      } 
      //malloc(22); 
//      malloc_zon 
      //這并沒有什么卵用。。。weakSelf 已經(jīng)是野指針 照樣crash 
//      __strong __typeof(weakSelf) strongSelf = weakSelf; 
//      if (weakSelf) { 
//        NSLog(@"name --> is %@", strongSelf.name); 
//      } 
      if (malloc_zone_from_ptr(weakSelf)) { 
        NSLog(@"name --> is %@", weakSelf.name); 
      } 
    }; 
    for (int i = 0; i < 300; i++) { 
//      dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ 
//        block(); 
//      }); 
      dispatch_async(dispatch_get_main_queue(), ^{ 
        block(); 
      }); 
    } 
  } 
  return self; 
} 
@end

關(guān)于“iOS中MRC下block循環(huán)引用的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


新聞標(biāo)題:iOS中MRC下block循環(huán)引用的示例分析
瀏覽地址:http://weahome.cn/article/igsise.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部