NSTextFieldCell をプロトタイプとして NSMatrix を作成しました。しかし、ビューがウィンドウに追加されて描画されると、次のエラーが発生します。
-[NSTextFieldCell setTitleWidth:]: unrecognized selector sent to instance 0x21191040
Cocoa が NSTextFieldCell プロトタイプで setTitleWidth: を呼び出すのはなぜですか? setTitleWidth: NSTextFieldCell メソッドではなく、NSFormCell メソッドです。
そのプロトタイプをサブクラス化し、setTitleWidth: と titleWidth: のダミー メソッドを追加すると、すべてが機能しますが、これは明らかにハックです。
何が起こっているのですか?以下は、作業コードの関連セクションです。
(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))
))