0

我创建了一个以 NSTextFieldCell 作为原型的 NSMatrix。但是当视图被添加到窗口并被绘制时,我得到了这个错误:

-[NSTextFieldCell setTitleWidth:]: unrecognized selector sent to instance 0x21191040

为什么 Cocoa 在 NSTextFieldCell 原型上调用 setTitleWidth:?setTitleWidth: 是一个 NSFormCell 方法,而不是一个 NSTextFieldCell 方法。

如果我将该原型子类化并为 setTitleWidth: 和 titleWidth: 添加虚拟方法,那么一切正常,但这肯定是一个 hack。

有什么想法吗?以下是工作代码的相关部分:

(defclass easygui::cocoa-matrix-cell (easygui::cocoa-extension-mixin ns:ns-text-field-cell)
  ((title-width :accessor title-width))
  (:metaclass ns:+ns-object))

(objc:defmethod (#/setTitleWidth: void) ((self easygui::cocoa-matrix-cell) (width :<CGF>LOAT))
  (setf (title-width self) width))

(objc:defmethod (#/titleWidth: :<CGF>LOAT) ((self easygui::cocoa-matrix-cell) (size :<NSS>IZE))
  (title-width self))

(defmethod initialize-instance :after ((view sequence-dialog-item) &key)
  (let ((cocoa-matrix (cocoa-ref view))
        (prototype (#/init (#/alloc easygui::cocoa-matrix-cell))))
    (#/setPrototype: cocoa-matrix prototype)
    (#/setMode: cocoa-matrix #$NSListModeMatrix)
    (#/setIntercellSpacing: cocoa-matrix (ns:make-ns-size 0 0))
    (set-cell-size view (cell-size view))
    (set-table-sequence view (table-sequence view))
    ))
4

1 回答 1

0

原来我NSMatrix的对象实际上是一个NSForm对象。后者继承自前者,但要求它使用 anNSFormCell作为其原型。我试图为对象使用NSTextFieldCell原型NSForm,这就是为什么NSFormCell仍然调用这些方法的原因。

这是所需的更改:

-(defclass easygui::cocoa-matrix (easygui::cocoa-extension-mixin ns:ns-form)
+(defclass easygui::cocoa-matrix (easygui::cocoa-extension-mixin ns:ns-matrix)
于 2013-08-02T00:36:59.747 回答