Is it possible to change UIBarButtonItem title and style in runtime?
- by user262325
Hello everyone
In one project, I hope to change UIBarButtonItem and style in runtime
editBarItemButton links to a UIBarButtonItem which original status are
style:UIBarButtonItemStyleBordered
title:Edit
if I press the bar item button, it will execute the codes below:
[editBarItemButton setStyle: UIBarButtonItemStyleDone];
[editTarBarItemButton setTitle:@"Done" ];
but neither the style nor title has changed.
Welcome any comment
Thanks
interdev