gpt4 book ai didi

iphone - 以编程方式向 UITextView 中的特定区域添加一些文本?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:15:48 26 4
gpt4 key购买 nike

我以编程方式创建了一个 UITextView 的实例。我想以编程方式将一些文本添加到 UITextView 中的特定区域。这是我创建 UITextView 的代码。

      UITextView *textView =[[UITextView alloc]init];
textView.frame=CGRectMake(0,0,282,210);
[textView setReturnKeyType:UIReturnKeyDone];
[self.view addSubview:textView];

例如,我想向特定区域 CGRectMake(260,190,20,20) 添加一些文本。然后将此文本添加到 UITextView。以编程方式,请任何人指导我,怎么可能做到这一点?

最佳答案

你可以在那里添加一个 UILabel

UITextView *textView = [[UITextView alloc] init];
TextView.frame = CGRectMake(0.0,0.0,282.0,210.0);
[textView setReturnKeyType: UIReturnKeyDone];

UILabel *label = [[UILabel alloc] init];
label.frame = CGRectMake(260.0,190.0,20.0,20.0);
label.text = @"T"; //here you set the text you want...

[textView.view addSubview: label];

[self.view addSubview: textView];

关于iphone - 以编程方式向 UITextView 中的特定区域添加一些文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10464657/

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