1
[UIView animateWithDuration:0.2
                          delay:0.0f
                        options:UIViewAnimationOptionCurveEaseIn
                     animations:^{
                         self.imgViewEnterFrame.alpha = 1.0 ;
                         self.imgViewOutofFrame.alpha = 0.0;
                         self.imgViewEnterFrame.frame = self.rectEnterGoodFrame;
                     }
                     completion:nil];
4

1 回答 1

1

这不是保留周期。self当您在类块属性/变量或类似的东西中使用重复计时器或引用时,您会获得保留周期。在此代码段中,这些似乎都不是问题。

这是一个理论问题,还是您有保留周期的证据(即您的控制器在被解雇时没有被释放)?

于 2013-06-17T04:19:35.817 回答