gpt4 book ai didi

ios - 通过textview显示文本时出现错误

转载 作者:行者123 更新时间:2023-11-29 00:56:28 25 4
gpt4 key购买 nike

我创建了一个应用程序,在其中以编程方式通过 UITextView 添加了文本,并将此 TextView 添加为自定义 ViewController 的 subview 。问题是文本没有显示在此 ViewController 中。请帮我解决这个问题。

代码——

UITextView *textView =[[UITextView alloc] init];
textView.text = @"text here";
[textView setFont:[UIFont systemFontOfSize:90]];
textView.delegate = self;
[textView setBackgroundColor: [UIColor clearColor]];
[textView setTextColor: [UIColor whiteColor]];
textView.frame=CGRectMake(150,300,self.view.frame.size.width-40,200);
//textView.transform = CGAffineTransformMakeRotation(M_PI_4);
[textView setReturnKeyType:UIReturnKeyDone];
textView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
[self.view addSubview:textView];

最佳答案

您正在使用 TextView 的文本颜色作为白色,并使用该 TextView 的背景来清除颜色。确保您的 viewcontrollers View 的背景应该是深色,或者您必须将 textview 的文本颜色更改为一些深色,如 blackcolor。

关于ios - 通过textview显示文本时出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37584175/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com