macOS/iOS API解説

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

目次

setImagePosition:

画像とタイトルの位置関係をセットします
-(void)setImagePosition:(NSCellImagePosition)aPosition:

解説

画像とタイトルの位置関係をセットします。
【NSCellImagePosition】
● NSNoImage
● NSImageOnly
● NSImageLeft
● NSImageRight
● NSImageBelow
● NSImageAbove
● NSImageOverlaps

返り値

( void )

なし

引数

( NSCellImagePosition )aPosition

位置関係

フレームワーク

ApplicationKit

クラス

NSButtonCell

Instance Methods

使用可能

10.0

参照

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
[bCell1 setImagePosition:NSImageOnly];
switch ([bCell1 imagePosition]){
        case NSNoImage:
            NSLog(@"NSNoImage");
            break;
        case NSImageOnly:
            NSLog(@"NSImageOnly");
            break;
        case NSImageLeft:
            NSLog(@"NSImageLeft");
            break;
        case NSImageRight:
            NSLog(@"NSImageRight");
            break;
        case NSImageBelow:
            NSLog(@"NSImageBelow");
            break;
        case NSImageAbove:
            NSLog(@"NSImageAbove");
            break;
        case NSImageOverlaps:
            NSLog(@"NSImageOverlaps");
            break;
        default :
            NSLog(@"other");
        }
}

@end