- 设置光标颜色
#import "MYTextField.h"
@implementation MYTextField
- (void)drawRect:(NSRect)dirtyRect {
[super drawRect:dirtyRect];
[(NSTextView*)[self currentEditor] setInsertionPointColor:[NSColor blueColor]];
}
@end
-
去掉选中时蓝色边框
![](https://img.haomeiwen.com/i1204194/2f9d3381fe9dfce8.png)
- 设置stringValue时如果为nil,会 Crash,要做判空处理.
textField.stringValue = newAppPath ? newAppPath : @"";
网友评论