UIWebView random crash at [UIViewAnimationState release]: message sent to deallocated instance

前端 未结 8 1081
Happy的楠姐
Happy的楠姐 2020-12-04 16:24

I\'m having a random UIWebView crash using iOS8.1 and UIWebView, using an iPhone5. In my tests the crash doesn\'t

8条回答
  •  醉酒成梦
    2020-12-04 16:42

    If you are not using animations you can avoid this bug by disabling Animations. Put this in your controller init method:

    [UIView setAnimationsEnabled:NO];
    

提交回复
热议问题