0

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))
    ))
4

1 に答える 1

0

NSMatrix私のオブジェクトは実際にはオブジェクトであることが判明しましたNSFormNSFormCell後者は前者を継承していますが、プロトタイプとして を使用する必要があります。オブジェクトのNSTextFieldCellプロトタイプを使用しようとしていたため、これらのメソッドがまだ呼び出されていました。NSFormNSFormCell

必要な変更は次のとおりです。

-(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 に答える