Содержание около 230 строк. Он не отображается в UITextView, кроме случаев, когда вы нажимаете на него И пытаетесь прокрутить вниз. В противном случае это белый пустой вид.
Есть идеи почему?
UITextView *termsOfService = [[UITextView alloc] initWithFrame:CGRectMake(20.0, 100.0, 245.0, 170.0)];
termsOfService.text = responseString;
termsOfService.font = [UIFont systemFontOfSize:13];
termsOfService.editable = NO;
termsOfService.delegate = self;
[alert addSubview:termsOfService];