标签: macos cocoa mouseevent nstextview
我已经NSTextView了。 .m非常简单和简短:
NSTextView
.m
@implementation MyTextView - (void)mouseDown:(NSEvent *)theEvent { NSLog(@"click") ; } @end
但是现在,我无法在MyTextView中选择文本。我该如何解决这个问题?
答案 0 :(得分:1)
调用[super mouseDown:theEvent];