2

disabling the rightBarButtonItem in iOS8 is not changing its color to grey like in iOS7.Do I have to do anything more to change its color when disabled, other than changing text color color manually.

CyberInfo
  • 240
  • 2
  • 9

1 Answers1

0

I found an alternative myself. This can be done as follows:

[self.navigationItem.rightBarButtonItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: [UIColor grayColor], NSForegroundColorAttributeName, nil] forState:UIControlStateDisabled];
Shanti K
  • 2,873
  • 1
  • 16
  • 31
CyberInfo
  • 240
  • 2
  • 9