I have a UIBarButtonItem in IB
That button has selectors.
Things work fine but I want to change the appearance.
Hence I did:
UIImage * imageSetting= [UIImage imageNamed:@"setting-button"];
UIImageView * imageView = [[UIImageView alloc]initWithImage:imageSetting];
self.editSettings = [self.editSettings initWithCustomView:imageView];
Now appearance works fine but pressing the button won’t get me to any code at all.
What to do?
Replace
with
Hope this helps you..