I am trying to make a button for my navigation bar with a custom image. When I run the following code, the button appears as it should, except you can see another wider button behind it, sticking out the sides. How do I get rid of that other button?
UIBarButtonItem *emailButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"emailBut"]
style:UIBarButtonSystemItemCompose
target:self
action:@selector(emailSheet)];
self.navigationItem.rightBarButtonItem = emailButton;