内容は約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];