I had been using following code to change text color of items which I add in UIActionSheet.:
UIActionSheet
- (void)willPresentActionSheet:(UIActionSheet *)act
Changing the tintColor of window worked for me.
tintColor
window
In the - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions method
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions method
write this:
[self.window setTintColor:[UIColor redColor]];
This changed the font color of all UIActionSheet objects.