我正在尝试在我的NSTextFields中垂直居中文本,但其中一个是密码,所以它是一个NSSecureTextField。我使用以下实现将其类设置为MDVerticallyCenteredSecureTextFieldCell
:
- (NSRect)adjustedFrameToVerticallyCenterText:(NSRect)frame {
// super would normally draw text at the top of the cell
NSInteger offset = floor((NSHeight(frame) -
([[self font] ascender] - [[self font] descender])) / 2);
return NSInsetRect(frame, 0.0, offset+10);
}
- (void)editWithFrame:(NSRect)aRect inView:(NSView *)controlView
editor:(NSText *)editor delegate:(id)delegate event:(NSEvent *)event {
[super editWithFrame:[self adjustedFrameToVerticallyCenterText:aRect]
inView:controlView editor:editor delegate:delegate event:event];
}
- (void)selectWithFrame:(NSRect)aRect inView:(NSView *)controlView
editor:(NSText *)editor delegate:(id)delegate
start:(NSInteger)start length:(NSInteger)length {
[super selectWithFrame:[self adjustedFrameToVerticallyCenterText:aRect]
inView:controlView editor:editor delegate:delegate
start:start length:length];
}
- (void)drawInteriorWithFrame:(NSRect)frame inView:(NSView *)view {
[super drawInteriorWithFrame:
[self adjustedFrameToVerticallyCenterText:frame] inView:view];
}
-(void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
{
[super drawWithFrame:cellFrame inView:controlView];
}
类似的子类已经在常规NSTextFieldCell
上工作,只是不安全的版本。似乎Apple以某种方式保护这些方法不会被覆盖。
现在密码字段是唯一未对齐的字段:
有人可以建议一种方法来调用NSSecureTextFieldCell
子类的方法或者将文本字段垂直居中的其他方法吗?
答案 0 :(得分:24)
尝试使用常规NSTextField,内置NSSecureTextFieldCell子类。我有同样的问题,这种组合有效。
答案 1 :(得分:4)
您可以创建NSSecureTextField
的子类,如:
@implementation SubclassTextField
+ (Class)cellClass {
return [SubclassTextFieldCell class];
}
@end
和单元格的子类:
@implementation SubclassTextFieldCell
- (NSRect)drawingRectForBounds:(NSRect)rect {
// It will be working
...
}
...
@end
如果这样做,那么来自子类NSSecureTextField
的方法将开始工作。
答案 2 :(得分:2)
要在NSTextField
或NSSecureTextField
中垂直居中占位符文字,您只需检查"使用单线模式" “属性”检查器(“文本字段”部分)中的复选框。如果您不使用IB,则可以通过编程方式进行设置:
[mySecureTextField.cell setUsesSingleLineMode:YES];