thiagoperes / IDMPhotoBrowser

Photo Browser / Viewer inspired by Facebook's and Tweetbot's with ARC support, swipe-to-dismiss, image progress and more
MIT License
2.71k stars 641 forks source link

Crash in iOS 11 in method - (UIButton*)customToolbarButtonImage:(UIImage*)image imageSelected:(UIImage*)selectedImage action:(SEL)action #307

Open VishalSharma91 opened 5 years ago

VishalSharma91 commented 5 years ago

I was getting the crash here when I turn on the property of IDM browser _displayArrowButton = YES I got down to make change to method - (UIButton*)customToolbarButtonImage:(UIImage*)image imageSelected:(UIImage*)selectedImage action:(SEL)action

from UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

To UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];

and then it worked just fine. What can be the reason? does anybody face the same thing ?