Domande taggate «retain»

7
catturare fortemente se stessi in questo blocco probabilmente porterà a un ciclo di mantenimento
Come posso evitare questo avviso in xcode. Ecco il frammento di codice: [player(AVPlayer object) addPeriodicTimeObserverForInterval:CMTimeMakeWithSeconds(0.1, 100) queue:nil usingBlock:^(CMTime time) { current+=1; if(current==60) { min+=(current/60); current = 0; } [timerDisp(UILabel) setText:[NSString stringWithFormat:@"%02d:%02d",min,current]];///warning occurs in this line }];

7
Correggi l'avviso "Catturare [un oggetto] con forza in questo blocco probabilmente porterà a un ciclo di mantenimento" nel codice abilitato per ARC
Nel codice abilitato ARC, come correggere un avviso su un potenziale ciclo di conservazione, quando si utilizza un'API basata su blocco? L'avviso: Capturing 'request' strongly in this block is likely to lead to a retain cycle prodotto da questo frammento di codice: ASIHTTPRequest *request = [[ASIHTTPRequest alloc] initWithURL:... [request setCompletionBlock:^{ …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.