cityingMa

MJPhotoBrowser BUG修复

崩溃在loading.progress = (float)receivedSize/expectedSize;

分析:MJPhotoView 执行了hide移除了MJPhotoLoadingView,然而SDWebimage 仍然执行了下载进度的设置。

解决方法:写个bool值,当执行hide方法的时候设置为YES,然后

  if (!hide) {
                    loading.progress = (float)receivedSize/expectedSize;
                }

posted on 2016-06-14 12:06  cityingMa  阅读(250)  评论(0编辑  收藏  举报

导航