gpt4 book ai didi

objective-c - 使用 NSTextView 伪造 NSTextField 以获得漂亮的着色?

转载 作者:太空狗 更新时间:2023-10-30 03:29:18 30 4
gpt4 key购买 nike

尝试更改 NSTextField 的选定文本背景颜色(我们有一个深色 UI,并且选定文本背景几乎与文本本身相同),但似乎只有 NSTextView 允许我们更改此颜色。

因此,我们试图使用 NSTextView 伪造 NSTextField,但无法让文本滚动发挥同样的作用。

我们得到的最接近的是这段代码:

NSTextView *tf = [ [ NSTextView alloc ] initWithFrame: NSMakeRect( 30.0, 20.0, 80.0, 22.0 ) ];

// Dark UI
[tf setTextColor:[NSColor whiteColor]];
[tf setBackgroundColor:[NSColor darkGrayColor]];

// Fixed size
[tf setVerticallyResizable:FALSE];
[tf setHorizontallyResizable:FALSE];

[tf setAlignment:NSRightTextAlignment]; // Make it right-aligned (yup, we need this too)

[[tf textContainer] setContainerSize:NSMakeSize(2000, 20)]; // Try to Avoid line wrapping with this ugly hack
[tf setFieldEditor:TRUE]; // Make Return key accept the textfield

// Set text properties
NSMutableDictionary *dict = [[[tf selectedTextAttributes] mutableCopy ] autorelease];
[dict setObject:[NSColor orangeColor] forKey:NSBackgroundColorAttributeName];
[tf setSelectedTextAttributes:dict];

几乎没问题,除了如果文本比文本字段长,您无法以任何方式滚动到它。

知道如何实现吗?

提前致谢

编辑:Joshua Nozzi 建议的解决方案

感谢 Joshua,这是一个很好的解决方案,可以满足我的需求:

@interface ColoredTextField : NSTextField
- (BOOL)becomeFirstResponder;
@end

@implementation ColoredTextField
- (BOOL)becomeFirstResponder
{
if (![super becomeFirstResponder])
return NO;

NSDictionary * attributes = [NSDictionary dictionaryWithObjectsAndKeys :
[NSColor orangeColor], NSBackgroundColorAttributeName, nil];

NSTextView * fieldEditor = (NSTextView *)[[self window] fieldEditor:YES forObject:self];
[fieldEditor setSelectedTextAttributes:attributes];
return YES;
}
@end

它不是用 NSTextView 伪造它,它只是一个 NSTextField,当它成为第一响应者时会更改所选文本的颜色。

编辑:一旦您在文本字段中按 Enter,上面的代码就会回退到默认选择颜色。这是避免这种情况的方法。

@interface ColoredTextField : NSTextField
- (BOOL)becomeFirstResponder;
- (void)textDidEndEditing:(NSNotification *)notification;

- (void)setSelectedColor;
@end

@implementation ColoredTextField
- (BOOL)becomeFirstResponder
{
if (![super becomeFirstResponder])
return NO;
[self setSelectedColor];
return YES;
}

- (void)textDidEndEditing:(NSNotification *)notification
{
[super textDidEndEditing:notification];
[self setSelectedColor];
}

- (void) setSelectedColor
{
NSDictionary * attributes = [NSDictionary dictionaryWithObjectsAndKeys :
[NSColor orangeColor], NSBackgroundColorAttributeName, nil];

NSTextView * fieldEditor = (NSTextView *)[[self window] fieldEditor:YES forObject:self];
[fieldEditor setSelectedTextAttributes:attributes];
}
@end

最佳答案

为什么不直接设置文本字段的属性 field editor直接当场becomes first responder

在典型的文本字段中,选择仅在字段为第一响应者时可见,因此如果您请求文本字段的字段编辑器,然后设置它的 selected 文本属性,您将获得同样的影响,不是吗?

NSDictionary * attributes = [NSDictionary dictionaryWithObjectsAndKeys:
[NSColor orangeColor], NSBackgroundColorAttributeName, nil];
NSTextView * fieldEditor = (NSTextView *)[[self window] fieldEditor:YES
forObject:textField];
[fieldEditor setSelectedTextAttributes:attributes];

注意:正如下面评论中所讨论的,文档中说字段编辑器是 NSTextView 的实例是正确的,但是 -[NSWindow fieldEditor:forObject:] 方法声称返回一个 NSText (NSTextView 的直接父类(super class))。如果您计划向字段编辑器发送 NSTextView-only 方法,您需要将其转换为 NSTextView 以消除编译器的警告。转换不会破坏代码中的任何内容,如果将来更正方法原型(prototype),那么它可以安全地保留在原地。

关于objective-c - 使用 NSTextView 伪造 NSTextField 以获得漂亮的着色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3112213/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com