TableViewCell displays incorrectly in iOS 6

孤者浪人 提交于 2019-12-06 04:36:27

Apparently animation stops in some moment, i don't understand why this happens only in iOS 6. So I removed [_activityIndicatorView startAnimating]; from init method and added to layoutSubviews this:

if(![_activityIndicatorView isAnimating])
       [_activityIndicatorView startAnimating];

I think it's iOS 6 bug.

you call [activyView startAnimating] in your cell's INIT method only.. try calling it before you want it to animate :: willDisplayCell or even viewForCell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!