So, I kinda got this working - Not totally happy with it, but it works.
I set the UIBarButtonItem to 'Custom', so that allows me to change the title programmatically (as I understand it):
Code:
if ([addButton.title isEqualToString:@"Remove"])
{
addButton.title = @"Add";
}
else
{
addButton.title = @"Remove";
}
That works fine. Still doesn't solve my original problem, but at least I can now move onto something else.
Thanks for the help.
- sk