阿神2017-04-18 09:16:09
This problem only occurs in 4S, and it was finally found that it was caused by the image loaded in UICollectionView being too large.
The solution is to use the + (UIImage )sd_imageWithData:(NSData )data method in the UIImage+MultiFormat.m class of SDWebImage Limit the cached images in if (data.length/1024 > 128) {processing method}
But I haven’t found a good processing method... I hope there are experts who have seen it and can help me
PHPz2017-04-18 09:16:09
It may be that the selected signature is in Release or Ad-hoc mode. If so, just change to Develop.