Cómo editar el tamaño y el color de la fuente del texto UIAlertAction

Como editarUIAlertAction tamaño y color del texto? He tomado unUIAlertController de acuerdo con cómo editar el tamaño. Este es mi código

UIAlertController *controller = [UIAlertController alertControllerWithTitle:@"Do you wish to logout?" message:@"" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *logOut = [UIAlertAction actionWithTitle:@"Log Out" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {}];

Ahora quiero mi texto 'Cerrar sesión' con tamaño de fuente 22 y color verde y en semibold.

Respuestas a la pregunta(4)

Su respuesta a la pregunta