NSTextField

作者: VictorZhangWang | 来源:发表于2018-07-25 15:08 被阅读74次
  • 设置光标颜色
#import "MYTextField.h"
@implementation MYTextField

- (void)drawRect:(NSRect)dirtyRect {
    [super drawRect:dirtyRect];
    [(NSTextView*)[self currentEditor] setInsertionPointColor:[NSColor blueColor]];
}

@end
  • 去掉选中时蓝色边框


  • 设置stringValue时如果为nil,会 Crash,要做判空处理.
textField.stringValue = newAppPath ? newAppPath : @"";

相关文章

网友评论

    本文标题:NSTextField

    本文链接:https://www.haomeiwen.com/subject/govpmftx.html