「Command + delete」を使用して iOS-Simulator の UITextView からテキストを削除した後、UITextView にテキストを設定できなくなりました。
textView.text = @"any text"; //no longer works
テキストは UITextView によって自動的に削除されるため、キーボードから入力すると、すべて問題ありません。
これがコードです、それは非常に簡単です。
@interface ViewController ()
@property (nonatomic,strong) UITextView *textView;
@end
@implementation ViewController
-(void)loadView{
[super loadView];
self.textView = [[UITextView alloc] initWithFrame:self.view.frame];
[self.view addSubview:self.textView];
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 200, 50)];
button.backgroundColor = [UIColor blackColor];
[button setTitle:@"setText" forState:UIControlStateNormal];
button.center = self.view.center;
[button addTarget:self action:@selector(setText) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
}
- (void)setText{
self.textView.text = @"any text";
}