macOS/iOS API解説

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

目次

tabStops

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

解説

タブストップの配列を返します。

返り値

( NSArray * )

タブストップの配列

引数

フレームワーク

ApplicationKit

クラス

NSParagraphStyle

Instance Methods

使用可能

10.0

参照

- location (NSTextTab)
- setTabStops:(NSMutableParagraphStyle)
-addTabStop:(NSMutableParagraphStyle)
-removeTabStop:(NSMutableParagraphStyle)

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{

NSTextTab *tabStop = [[NSTextTab alloc] initWithType:NSLeftTabStopType
                                        location:144];
NSMutableParagraphStyle *pStyle = [NSMutableParagraphStyle defaultParagraphStyle];

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

NSLog([[pStyle tabStops] description]);

}

@end