テキスト属性を変更できるかを返します
解説
テキスト属性を変更できるかを返します。
返り値
( 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