内容约为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];
答案 0 :(得分:1)
可能是因为UIAlertView不打算添加子视图。只因为你可以,并不意味着你应该。