You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iOS8下 tableView上具有多个XRCarouseView,自动轮播,多次来回滑动,框架会有概率出现僵尸崩溃,原因是控件释放后,内部scrollView还在回调didScroll方法。[XRCarouseView scrollViewDidScroll:] message sent to dellocated instance 0xxxxxxx 建议在处理一下scrollView代理:
(void)dealloc{
self.scrollView.delegate = nil;
}
The text was updated successfully, but these errors were encountered:
iOS8下 tableView上具有多个XRCarouseView,自动轮播,多次来回滑动,框架会有概率出现僵尸崩溃,原因是控件释放后,内部scrollView还在回调didScroll方法。[XRCarouseView scrollViewDidScroll:] message sent to dellocated instance 0xxxxxxx 建议在处理一下scrollView代理:
self.scrollView.delegate = nil;
}
The text was updated successfully, but these errors were encountered: