Como fazer um UIAlertView alinhado à esquerda e com múltiplas linhas?

Estou interessado em fazer um UIAlertView alinhado à esquerda com várias linhas como uma lista de boletins que se parece com o seguinte:

linha 1linha 2linha 3

Aqui está o que eu tenho até agora:

alert = [[UIAlertView alloc] initWithTitle: @"How to use buttons"
                                   message: @"line 1. line 2, line 3 "
                                  delegate: nil
                         cancelButtonTitle: @"OK"
                         otherButtonTitles: nil];

Eu também quero alterar a cor da exibição de alerta para vermelho.

questionAnswers(5)

yourAnswerToTheQuestion