In the image above how to change the font size and color of \"Done\", \"Some Other action\"? and how to change the font size and color of \"title\", and \"message\"
Simply do like this
UIAlertAction * action = [UIAlertAction actionWithTitle:@"ACTION TITLE" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { // TODO : ACTION }]; [action setValue:[UIColor redColor] forKey:@"titleTextColor"]; [alertController action];