macOS/iOS API解説

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

目次

allowsEditingTextAttributes

テキスト属性を変更できるかを返します

解説

テキスト属性を変更できるかを返します。

返り値

( BOOL )

文字列属性を変更可能かYES/NO

引数

フレームワーク

ApplicationKit

クラス

NSCell

Instance Methods

使用可能

10.0

参照

- setAllowsEditingTextAttributes:

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{

//セット
[bCell1 setAllowsEditingTextAttributes:NO];

if ([bCell1 allowsEditingTextAttributes]){
        NSLog(@"YES");
    }else{
        NSLog(@"NO");
    }

}
@end