我制作了这个UITextView,除用户点击它时会打开键盘的事实外,其他一切都很完美。如何禁用该“editing(?)”选项?
这是代码:
- (void)loadAboutStable {
UITextView *aboutStable = [[UITextView alloc] init];
[aboutStable setText:@"Please check Your network connection"];
[self addSubview:aboutStable];}
最佳答案
[aboutStable setUserInteractionEnabled:NO]
应该这样做
并且如果您仍然需要滚动:
aboutStable.editable = NO;
关于ios - 使UITextView不能被用户编辑,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7323115/