macOS/iOS API解説

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

目次

insertNewButtonImage:in:

ボタン画像を挿入します
-(void)insertNewButtonImage:(NSImage *)newButtonImage:
            in:(NSButtonCell *)buttonCell:

解説

ボタン画像を挿入します

返り値

( void )

なし

引数

( NSImage * )newButtonImage

挿入するボタン画像

( NSButtonCell * )buttonCell

ボタンセル

フレームワーク

ApplicationKit

クラス

NSColorPickingDefault

Instance Methods

使用可能

10.0

参照

- provideNewButtonImage

例文

-(void)insertNewButtonImage:(NSImage *)newButtonImage in:(NSButtonCell *)buttonCell
{
NSLog(@"insertNewButtonImage");
}