iOS 10 can no longer set barcolor and tint on MFMessageComposeViewController
Below code works on iOS version 9.x or less, for some reason this does not work if iOS 10 if([MFMessageComposeViewController canSendText]) { controller.body = message; NSString *tel = pContact.tlc; controller.recipients = pContact.tlc?@[tel]:nil; controller.messageComposeDelegate = self; controller.navigationBar.tintColor = [UIColor whiteColor]; controller.navigationBar.barTintColor = [UIColor blueColor]; [self presentViewController:controller animated:YES completion:nil]; } is it broken or did some thing change. Not sure whats missing here. I am in the dark (pitch black) EDIT: I tried to use