ios - Change UIBarButton to Red -


i show edit button in red , not save button below

uibarbuttonitem *barbtn = [[uibarbuttonitem alloc] initwithtitle:(_isedit)?  @"save" : @"edit" style:uibarbuttonitemstylebordered target:self action:@selector(togleedit)];  [uibarbuttonitem appearance] settintcolor:[uicolor redcolor]]; 

uibarbuttonitem *barbtn =      [[uibarbuttonitem alloc] initwithtitle: (_isedit) ? @"save" : @"edit"                                       style: uibarbuttonitemstylebordered                                     target: self                                      action: @selector(togleedit)]; if (!_isedit)     [barbtn settintcolor:[uicolor redcolor]]; 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -