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

时间:2012-05-05 18:16:42

标签: iphone ios xcode uitableview cgrect

我以编程方式创建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。 以编程方式,请任何人指导我,怎么可能这样做?

1 个答案:

答案 0 :(得分:3)

您可以在那里添加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];