我的登录屏幕中有一个简单的 UITextView,我需要在其中显示条款和条件。条款和条件中有一个非常大的文本。在界面构建器中,我已将文本添加到 UITextView。在界面生成器中,文本正在正确显示。但是当我运行应用程序时 UITextView 是空的。如果我在 UItextView 中给出小文本,它会正确呈现,但不会显示大/大文本。
这是代码。
- (IBAction)showTermsOfUse:(id)sender{
termsOfUseText.text = @"/***/";
termsOfUseText.scrollEnabled = YES;
[UIView beginAnimations:nil context:nil]; // begins animation block
[UIView setAnimationDuration:0.6]; // sets animation duration
[UIView setAnimationDelegate:self];
termsOfUse.frame = CGRectMake(0,0,320,416);
[UIView commitAnimations]; // commits the animation block. This Block is done.
}