UITextView内容未出现在UIAlerView中

时间:2010-03-15 21:30:44

标签: iphone objective-c uitextview uialertview

内容约为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];

1 个答案:

答案 0 :(得分:1)

可能是因为UIAlertView不打算添加子视图。只因为你可以,并不意味着你应该。