attributeType
アトリビュートのタイプを返します
解説
アトリビュートのタイプを返します。
●NSDateAttributeType
返り値
( NSAttributeType )
なし
引数
フレームワーク
CoreData
クラス
NSAttributeDescription
Instance Methods
使用可能
10.4
参照
-attributeValueClassName
-setAttributeType:
例文
NSAttributeDescription *dateAttribute;
dateAttribute = [[[NSAttributeDescription alloc] init] autorelease];
[dateAttribute setName:@"date"];
[dateAttribute setAttributeType:NSDateAttributeType];
[dateAttribute setOptional:NO];