UITextViewの文章を選択禁止


UITextViewを継承したクラスを作成し、canBecomeFirstResponderをオーバーライドすればよい。

UnselectableTextView.h

#import <UIKit/UIKit.h>
@interface UnselectableTextView : UITextView
@end

UnselectableTextView.m

#import "UnselectableTextView.h"
@implementation UnselectableTextView
-(BOOL)canBecomeFirstResponder{
    return NO;
}
@end

参考
UITextViewの虫めがねをとってしまおうiPhone開発

Comments

comments

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です