macOS/iOS API解説

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

目次

tabStopType

タブストップのタイプを返します

解説

タブストップのタイプを返します。
【NSTextTabType】タブストップタイプ
● NSLeftTabStopType
● NSRightTabStopType
● NSCenterTabStopType
● NSDecimalTabStopType

返り値

( NSTextTabType )

タブのスタイル

引数

フレームワーク

ApplicationKit

クラス

NSTextTab

Instance Methods

使用可能

10.0

参照

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{

NSTextTab *tabStop = [[NSTextTab alloc] initWithType:NSLeftTabStopType
                                        location:144];
NSArray *arr = [NSArray arrayWithObjects:tabStop, nil];
//NSMutableParagraphStyle *pStyle = [NSMutableParagraphStyle defaultParagraphStyle];

[myOutlet setUsesRuler:YES];
[myOutlet setRulerVisible:YES];


switch ([tabStop tabStopType]){
    case NSLeftTabStopType:
    NSLog(@"NSLeftTabStopType");
    break;
    case NSRightTabStopType:
    NSLog(@"NSRightTabStopType");
    break;
    case NSCenterTabStopType:
    NSLog(@"NSCenterTabStopType");
    break;
    case NSDecimalTabStopType:
    NSLog(@"NSDecimalTabStopType");
    break;
}


//[myOutlet insertParagraphSeparator:pStyle];



}

@end