thiagoperes / IDMPhotoBrowser

Photo Browser / Viewer inspired by Facebook's and Tweetbot's with ARC support, swipe-to-dismiss, image progress and more

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

actionButtonImage not shown.

rameshpjpti opened this issue · comments

I want to use custom image in actionButtonImage but not showing using this following code. Have any idea?

browser.actionButtonImage = [UIImage imageNamed:@"delete.png"];

actionButtonImage (as well as some other properties) are being weakly referenced by IDMPhotoBrowser. This may cause the image to be deallocated before it's being used by IDMPhotoBrowser. To work around this, I did the following:

__block UIImage *actionButtonImage = [UIImage imageNamed:@"delete.png"];
browser.actionButtonImage = actionButtonImage;
[self presentViewController:browser animated:YES completion:^{
        //images below are weak referenced by IDMPhotoBrowser
        //by setting them as block (and releasing them here) we prevent these images to be unassigned from the IDMPhotoBrowser before being used
        actionButtonImage = nil;
}];