13

有没有办法让 NSNumberFormatter(或可能是任何其他 NSFormatter)在 NSPopover 中工作?

popover 中 NSTextField 的值绑定到 NSViewController 的代表对象。当在字段中输入无效数字(例如,“asdf”)时,会在包含显示弹出窗口的 NSView 的 NSWindow 中显示一个说明该值无效的工作表。

单击“确定”后,您将获得以下回溯:

* thread #1: tid = 0x4e666a, 0x00007fff931f9097 libobjc.A.dylib`objc_msgSend + 23, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=EXC_I386_GPFLT)
frame #0: 0x00007fff931f9097 libobjc.A.dylib`objc_msgSend + 23
frame #1: 0x00007fff8a1fa6c8 AppKit`-[NSTextView(NSSharing) becomeKeyWindow] + 106
frame #2: 0x00007fff8a080941 AppKit`-[NSWindow(NSWindow_Theme) acquireKeyAppearance] + 207
frame #3: 0x00007fff8a0800df AppKit`-[NSWindow becomeKeyWindow] + 1420
frame #4: 0x00007fff8a07f5c6 AppKit`-[NSWindow _changeKeyAndMainLimitedOK:] + 803
frame #5: 0x00007fff8a1a205d AppKit`-[NSWindow _orderOutAndCalcKeyWithCounter:stillVisible:docWindow:] + 1156
frame #6: 0x00007fff8a0876c5 AppKit`-[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 3123
frame #7: 0x00007fff8a0867f0 AppKit`-[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 786
frame #8: 0x00007fff8a086470 AppKit`-[NSWindow orderWindow:relativeTo:] + 162
frame #9: 0x00007fff8a1a1425 AppKit`__18-[NSWindow _close]_block_invoke + 443
frame #10: 0x00007fff8a1a1230 AppKit`-[NSWindow _close] + 370
frame #11: 0x00007fff8a2d0565 AppKit`__106-[NSApplication(NSErrorPresentation) presentError:modalForWindow:delegate:didPresentSelector:contextInfo:]_block_invoke3221 + 50
frame #12: 0x00007fff8a2d02f7 AppKit`-[NSApplication(NSErrorPresentation) _something:wasPresentedWithResult:soContinue:] + 18
frame #13: 0x00007fff8a28fe9d AppKit`-[NSAlert didEndAlert:returnCode:contextInfo:] + 90
frame #14: 0x00007fff8a28f8c2 AppKit`-[NSWindow endSheet:returnCode:] + 368
frame #15: 0x00007fff8a28f49d AppKit`-[NSAlert buttonPressed:] + 107
frame #16: 0x00007fff8a1543d0 AppKit`-[NSApplication sendAction:to:from:] + 327
frame #17: 0x00007fff8a15424e AppKit`-[NSControl sendAction:to:] + 86
frame #18: 0x00007fff8a1a0d7d AppKit`-[NSCell _sendActionFrom:] + 128
frame #19: 0x00007fff8a1ba715 AppKit`-[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2316
frame #20: 0x00007fff8a1b9ae7 AppKit`-[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 487
frame #21: 0x00007fff8a1b91fd AppKit`-[NSControl mouseDown:] + 706
frame #22: 0x00007fff8a13ad08 AppKit`-[NSWindow sendEvent:] + 11296
frame #23: 0x00007fff8a0d9744 AppKit`-[NSApplication sendEvent:] + 2021
frame #24: 0x00007fff89f29a29 AppKit`-[NSApplication run] + 646
frame #25: 0x00007fff89f14803 AppKit`NSApplicationMain + 940

objc_msgSend 中崩溃时的寄存器是:

(lldb) reg read
General Purpose Registers:
   rax = 0x0000610000190740
   rbx = 0x0000610000190740
   rcx = 0x0000000000000080
   rdx = 0x00007fff8a97fd93  "currentEditor"
   rdi = 0x0000610000190740
   rsi = 0x00007fff8a9612bf  "respondsToSelector:"
   rbp = 0x00007fff5fbfeae0
   rsp = 0x00007fff5fbfeab8
    r8 = 0x000000000000002e
    r9 = 0xffff9fffffeb1bbf
   r10 = 0x00007fff8a9612bf  "respondsToSelector:"
   r11 = 0xbaddbe5c3e96bead
   r12 = 0x0000610000053830
   r13 = 0x00007fff931f9080  libobjc.A.dylib`objc_msgSend
   r14 = 0x000060000012a500
   r15 = 0x00007fff931f9080  libobjc.A.dylib`objc_msgSend
   rip = 0x00007fff931f9097  libobjc.A.dylib`objc_msgSend + 23
rflags = 0x0000000000010246
    cs = 0x000000000000002b
    fs = 0x0000000000000000
    gs = 0x00000000c0100000

我猜这是因为显示工作表后瞬态弹出窗口的窗口消失了,当前编辑器和任何可以响应选择器的对象也是如此。

将弹出框行为设置为 NSPopoverBehaviorSemitransient 会有所帮助,但如果弹出框因文本字段中的无效值而被解除,则仍会引发异常。

在这一点上,为了避免这个问题,我所能想到的就是手动验证数值。呸。

更新 1

正如 Brian Webster 在下面发现的,这是 AppKit 的一个基本问题。

由于我的验证需求非常简单(只是正整数),因此解决方法是在 KVC 对象中进行手动验证,该对象用作 NSPopover 显示的 NSViewController 中的代表对象。由于 NSTextField确实想使用字符串值,因此使用 -valueForKey: 和 -setValue:forKey: 来转换标量值。当您为文本字段中的绑定值打开“立即验证”时,只要文本字段发生更改,就会调用验证方法。

(在你问之前,一个 NSValueTransformer 不能做这个工作,因为它不参与验证过程。它只会在填充字段或保存更改时被调用。一旦用户输入了一些无效的内容,我就想要反馈数据——就像 NSFormatter 一样。)

这是我所做的要点:

- (id)valueForKey:(NSString *)key
{
    if ([key isEqualToString:@"property1"]) {
        return [NSString stringWithFormat:@"%zd", _property1];
    }
    else if ([key isEqualToString:@"property2"]) {
        return [NSString stringWithFormat:@"%zd", _property2];
    }
    else {
        return [super valueForKey:key];
    }
}


- (BOOL)validateValue:(inout id *)ioValue forKey:(NSString *)inKey error:(out NSError **)outError
{
    if (! *ioValue) {
        *ioValue = @"0";
    }
    else if ([*ioValue isKindOfClass:[NSString class]]) {
        NSString *inputString = [[(NSString *)*ioValue copy] autorelease];
        inputString = [inputString stringByReplacingOccurrencesOfString:@"," withString:@""];
        NSInteger integerValue = [inputString integerValue];
        if (integerValue < 0) {
            integerValue = -integerValue;
        }
        *ioValue = [NSString stringWithFormat:@"%zd", integerValue];
    }

    return YES;
}

- (void)setValue:(id)value forKey:(NSString *)key
{
    if ([value isKindOfClass:[NSString class]]) {
        if ([key isEqualToString:@"property1"]) {
            _property1 = [value integerValue];
        }
        else if ([key isEqualToString:@"property2"]) {
            _property2 = [value integerValue];
        }
        else {
            [super setValue:value forKey:key];
        }
    }
    else {
        [super setValue:value forKey:key];
    }
}

现在我需要洗个澡。

更新 2

感谢@PixelCutCompany 关于他们如何在 PaintCode 应用程序中做事的一些有用提示:

https://twitter.com/PixelCutCompany/status/441695942774104064 https://twitter.com/PixelCutCompany/status/441696198140125184

我想出了这个:

@interface PopupNumberFormatter : NSNumberFormatter

@end

@implementation PopupNumberFormatter

- (BOOL)getObjectValue:(out id *)anObject forString:(NSString *)aString range:(inout NSRange *)rangep error:(out NSError **)error
{
    NSNumber *minimum = [self minimum];
    NSNumber *maximum = [self maximum];

    if (aString == nil || [aString length] == 0) {
        if (minimum) {
            *anObject = minimum;
        }
        else if (maximum) {
            *anObject = maximum;
        }
        else {
            *anObject = [NSNumber numberWithInteger:0];
        }
    }
    else {
    if (! [super getObjectValue:anObject forString:aString range:rangep error:nil]) {
        // if the superclass can't parse the string, assign a reasonable default
        if (minimum) {
            *anObject = minimum;
        }
        else if (maximum) {
            *anObject = maximum;
        }
        else {
            *anObject = [NSNumber numberWithInteger:0];
        }
    }
    else {
        // clamp the parsed value to a minimum and maximum (if set)
        if (minimum && [*anObject compare:minimum] == NSOrderedAscending) {
            *anObject = minimum;
        }
        else if (maximum && [*anObject compare:maximum] == NSOrderedDescending) {
            *anObject = maximum;
        }
    }
    }

    return YES;
}

@end

基本上,您可以通过始终提供有效值来避免工作表或对话框出现问题。上面的代码在分配默认值时会考虑最小值和最大值。子类还考虑了 nil 或空字符串以及钳位值。

这让我感觉不那么脏。

4

3 回答 3

11

我建立了一个测试项目,看看我是否可以重现这个,我得到了同样的行为。这似乎是事件的顺序:

  1. 当您在文本字段中按 Enter 键时,会触发绑定,该绑定会尝试通过NSNumberFormatter.
  2. 当它失败时,绑定系统NSError通过响应者链呈现一个对象。这会冒泡到NSApplication,将错误显示为窗口上的工作表。
  3. 工作表的出现触发了弹出框的关闭,这反过来又触发了相同的绑定,试图显示另一个错误。但是,由于窗口上已经显示了一张工作表,因此永远不会显示第二个错误。如果您更改绑定选项并启用“始终显示应用程序模式警报”(这将在单独的窗口而不是工作表中显示错误),您将看到两个单独的警报窗口出现。

我认为正是这个 error-within-an-error 将 AppKit 抛出一个循环,并且当它试图弄乱字段编辑器(即NSTextView堆栈跟踪中的)时,它最终会向 now-deallocated 发送消息NSTextField

我发现的最佳解决方法是在我用来控制弹出框-willPresentError:的子类中实现,如下所示:NSViewController

- (NSError *)willPresentError:(NSError *)error
{
    NSMutableDictionary* userInfo = [[error userInfo] mutableCopy];

    [self.numberTextField unbind:@"value"];
    [userInfo setValue:nil forKey:NSRecoveryAttempterErrorKey];
    [userInfo setValue:nil forKey:NSLocalizedRecoveryOptionsErrorKey];
    return [NSError errorWithDomain:[error domain] code:[error code] userInfo:userInfo];
}

unbind:调用删除了绑定,因此它不会在弹出框关闭时尝试重新验证文本字段。由于无论如何显示错误时弹出框都会消失,因此这应该不会产生任何不良影响,假设您每次显示时都是从头开始创建弹出框而不是重复使用它。

此外,由于“确定”和“放弃更改”按钮在它们所指的字段消失时不再有意义,因此我将绑定系统的恢复尝试器从错误中删除,然后将其传递给 AppKit 进行显示。这样,它只是说“值 X 无效”,并带有一个“确定”按钮,除了关闭错误窗口之外什么都不做。

请注意,这仅在绑定上启用“始终显示应用程序模式警报”时才有效。否则,willPresentError:如果 AppKit 将错误显示为工作表,至少不会在视图控制器上显示,该方法似乎不会被 AppKit 调用。但是,如果您想保持工作表行为,您也许可以在响应者链中的其他位置插入逻辑,例如主窗口的控制器。

我将由您来决定这是否比手动验证值更难看。:)

于 2014-03-06T01:14:19.967 回答
3

首先,设置 popover 委托:

[ popover setDelegate: myDelegate];

在委托中实现 popoverShouldClose: 方法,如下所示。这个想法是“立即验证”控件将拒绝放弃其第一响应者状态,直到用户提供有效值。

- ( BOOL) popoverShouldClose: ( NSPopover*) popover {
    if( ![[[[ popover contentViewController] view] window] makeFirstResponder: popover]) {
        return NO;
    }

/*  // Using commitEditing also solves the problem. However if user chooses
    // "Discard Changes" during immediate validation, the commitEditing returns YES,
    // and the result of discarding is not visible, because popover is closed.
    if( ![[ popover contentViewController] commitEditing])  {
        return NO;
    }
*/
    // return YES or NO depending on other considerations you may have
    return YES;
}

这适用于我在 OS X 10.8 中的弹出行为 NSPopoverBehaviorSemitransient 和 NSPopoverBehaviorTransient。您可能需要使用以后的操作系统对其进行测试。

于 2015-12-11T03:58:44.640 回答
1

源自 Core Data 模型对象的验证错误也会出现同样的问题。另一种方法是替换系统提供的模态对话框,并使用现有弹出框内的弹出框显示错误:

弹出窗口中出现的错误示例

这可以通过覆盖-[NSResponder presentError: modalForWindow: delegate: didPresentSelector: contextInfo:]主弹出框的内容视图控制器来完成。我不会说它是防弹的,但以下内容很好地展示了发生错误的错误弹出框:

- (void)presentError:(NSError *)error modalForWindow:(NSWindow *)window delegate:(id)delegate didPresentSelector:(SEL)didPresentSelector contextInfo:(void *)contextInfo {

self.validationErrorPopover.contentViewController = [[ZBErrorViewController alloc] initWithError:error];

NSView *sourceView;
if ([self.view.window.firstResponder isKindOfClass:[NSText class]]) // i.e., current field editor
    sourceView = (NSText*)self.view.window.firstResponder;
else
    sourceView = self.view;

[self.validationErrorPopover showRelativeToRect:[self.view convertRect:sourceView.bounds fromView:sourceView] ofView:self.view preferredEdge:NSMaxYEdge];
}

在上面的示例中,self.validationErrorPopover只是一个配置了瞬态行为和 HUD 外观的 NSPopover,并且ZBErrorViewController是一个普通的 NSViewController,添加了一个属性来保存 NSError 对象,它的视图包含一个绑定到错误的文本字段localizedDescription。简单的自动布局约束确保错误弹出框的大小合适。

这只是我确信可以改进的初步努力。例如,使用逻辑来呈现错误的失败原因并调用恢复尝试器(我放弃了......普通的撤消功能允许用户无论如何都恢复到原始值)。

于 2014-06-25T19:24:22.463 回答