您好,
我正在Xcode 4.3.2中开发一个应用程序。我有一个小问题,我想启用UITextView
的滚动视图属性,并在我的代码中一次禁用UITextView
的{copy,selectAll,define}属性。
有可能吗?
答案 0 :(得分:1)
子类UITextView
并覆盖canBecomeFirstResponder
:
- (BOOL)canBecomeFirstResponder {
return NO;
}
答案 1 :(得分:0)
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
return NO;
}