1. 程式人生 > >Block外給self加上weak,那不就釋放了嗎

Block外給self加上weak,那不就釋放了嗎

Apple 官方的建議是,傳進 Block 之前,把 self 轉換成 __weak 的變數,這樣在 Block 中就不會出現對 self 的強引用。但是這樣的話, Block 執行完成之前,self 被釋放了,weakSelf 也會變為 nil。

__weak typeof(self) weakSelf = self;    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[weakSelf doSomething];
});

clang 的文件表示,在 doSomething 內,weakSelf 不會被釋放。但,下面的情況除外:

__weak __typeof__(self) weakSelf = self;  dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

[weakSelf doSomething];

[weakSelf doOtherThing];

});

在 doSomething 中,weakSelf 不會變成 nil,不過在 doSomething 執行完成,呼叫第二個方法 doOtherThing 的時候,weakSelf 有可能被釋放,於是,strongSelf 就派上用場了:

__weak typeof(self) weakSelf = self;

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

__strong typeof(self) strongSelf = weakSelf;

[strongSelf doSomething];

[strongSelf doOtherThing];

});

__strong 確保在 Block 內,strongSelf 不會被釋放。

**總結:
1 在 Block 內如果需要訪問 self 的方法、變數,建議使用 weakSelf。
2 如果在 Block 內需要多次 訪問 self,則需要使用 strongSelf。**
下面列出block能夠拷貝的情況:
1、呼叫block的copy方法
2、block作為返回值
3、block賦值時
4、Cocoa框架中方法名中含有usingBlock的方法
5、GCD中

關於GCD中block再提一點:
GCD中的block並沒有直接或間接被self強引用的,所以不會存在迴圈引用,故不需要weakSelf;又GCD中block能夠自動copy,所以self超出作用域仍可用,故不需要寫strongSelf

總結:
weakSelf是為了解決迴圈引用
strongSelf是為了保證任何情況下self在超出作用域後仍能夠使用