macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

performFindPanelAction:

検索パネルの実行するアクションメソッド
-(void)performFindPanelAction:(id)sender:

解説

検索パネルの実行するアクションメソッド
検索メニューを選択した時に呼び出されます。カスタム検索パネルを使用するためにオーバーライドして使えます。

返り値

( void )

なし

引数

( id )sender

フレームワーク

ApplicationKit

クラス

NSTextView

Instance Methods

使用可能

10.3

参照

例文

-(void)performFindPanelAction:(id)sender
{
NSLog(@"performFindPanelAction");
[super performFindPanelAction:sender];
}