我以UITextView
编程方式创建,textview 是根据需要创建的,但是当我尝试使用标签应用程序崩溃为 textview 设置值时。
我可以setUserInteractionEnabled
毫无问题地设置其他参数。
按照它的代码..
创建文本视图
UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(0,0,100,200)];
textView.font = [UIFont systemFontOfSize:30];
//textView.font = [UIFont boldSystemFontOfSize:12];
textView.backgroundColor = [UIColor grayColor];
textView.tag=i;
[textView setTextAlignment:NSTextAlignmentCenter];
textView.text=[NSString stringWithFormat:@"%d",i];
textView.inputView= [LNNumberpad defaultLNNumberpad];
textView.editable = YES;
[textView setDelegate:self];
[self.view addSubview:textView];
使用标签更改文本视图中的值..
UITextView *txtviewfound = (UITextView *)[self.view viewWithTag:j];
[txtviewfound setText:@"some text"];
[txtviewfound setUserInteractionEnabled:FALSE];
当我评论 settext 时,它工作正常。
如果我缺少任何东西,请告诉我。
提前致谢