Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
やあ、
Xcode 4.3.2 でアプリを開発しています。UITextView私のコードでスクロール ビュー プロパティを有効にし、(copy,selectAll,define) プロパティを一度に無効にしたいという小さな質問がありUITextViewます。
UITextView
出来ますか?
サブクラスUITextView化して上書きcanBecomeFirstResponder:
canBecomeFirstResponder
- (BOOL)canBecomeFirstResponder { return NO; }
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender { return NO; }