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
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;
}];
I want to use custom image in actionButtonImage but not showing using this following code. Have any idea?
browser.actionButtonImage = [UIImage imageNamed:@"delete.png"];
The text was updated successfully, but these errors were encountered: