When tapping and holding an action sheet or menu controller shows up but the text is white, what could be causing this?

When tapping and holding an action sheet or menu controller shows up but the text is white, what could be causing this?

On
You need to set following appearance for UIAlertController class for IOS 8.
[[UIView appearanceWhenContainedIn:[UIAlertController class], nil] setTintColor:[UIColor redColor]];
Another solution for IOS7+
- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
{
for (UIView *subview in actionSheet.subviews) {
if ([subview isKindOfClass:[UIButton class]]) {
UIButton *button = (UIButton *)subview;
[button setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
}
}
}
May this help to solve your problem.
Check for any override that maybe causing the problem.
Look for something like this in
IOS7delegate- willPresentActionSheet:to change colors..in iOS8 it's something like this i think:
Edit
I was searching and testing maybe it was..
Under
- (BOOL)application:didFinishLaunchingWithOptionstry checking it out..