6

使用するブロックがあるselfため、自己への弱い参照を宣言します。

__weak MyClass *weakSelf = self;

今私の質問:

  1. 定義weakSelfした場所でエラーが発生し、これが何を意味するのか理解できません。:

    自動変数にweak属性を指定することはできません

  2. ブロック内で別のブロックに渡しweakSelfますが、次のように同じことを再度行う必要があるかどうかわかりません。

    __weak MyClass *weakWeakSelf = weakSelf;
    

    そして、weakWeakSelfそのブロックに渡しますか?

4

3 に答える 3

8

これは、iOS 4 までを対象としているために発生する可能性が最も高いです。次のように変更する必要があります。

__unsafe_unretained MyClass *weakWeakSelf = weakSelf;
于 2012-05-03T12:28:13.470 に答える
3

アーク付き

__weak __typeof__(self) wself = self;

ARCなし

__unsafe_unretained __typeof__(self) wself = self;
于 2013-01-31T22:29:13.053 に答える
1

libextobjcを使用すると、読みやすく簡単になります。

- (void)doStuff
{
    @weakify(self); 
    // __weak __typeof__(self) self_weak_ = self;

    [self doSomeAsyncStuff:^{

        @strongify(self);
        // __strong __typeof__(self) self = self_weak_;

        // now you don't run the risk of self being deallocated
        // whilst doing stuff inside this block 
        // But there's a chance that self was already deallocated, so
        // you could want to check if self == nil

        [self doSomeAwesomeStuff];

        [self doSomeOtherAsyncStuff:^{

            @strongify(self);
            // __strong __typeof__(self) self = self_weak_;

            // now you don't run the risk of self being deallocated
            // whilst doing stuff inside this block 
            // Again, there's a chance that self was already deallocated, so
            // you could want to check if self == nil

            [self doSomeAwesomeStuff];

        }];
    }];
}
于 2016-05-21T08:57:16.397 に答える