AutoLayout do iOS - obtenha a largura do tamanho do quadro

Estou desenvolvendo usando o layout automático do iOS 6

Gostaria de registrar uma mensagem exibindo a largura do quadro da exibição.

Eu posso ver o textView na tela.

Mas eu tenho a largura e altura como zero, estou faltando alguma coisa?

NSLog(@"textView    = %p", self.textView);
NSLog(@"height      = %f", self.textView.frame.size.height);
NSLog(@"width       = %f", self.textView.frame.size.width);

textView    = 0x882de00
height      = 0.000000
width       = 0.000000

questionAnswers(9)

yourAnswerToTheQuestion