我创建了一个以 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))
))