elementWithName:children:attributes:
エレメント名、子エレメント、アトリビュートでノードを作って返します
+(id)elementWithName:(NSString *)name: children:(NSArray *)children: attributes:(NSArray *)attributes:
解説
エレメント名、子エレメント、アトリビュートでノードを作って返します。
返り値
( id )
オブジェクト()
引数
( NSString * )name
エレメント名
( NSArray * )children
子エレメント
( NSArray * )attributes
フレームワーク
Foundation
クラス
NSXMLNode
Class Methods
使用可能
10.4
参照
例文
NSArray *channelAttribute = [NSArray arrayWithObjects: [NSXMLNode attributeWithName:@"rdf:about" stringValue:@"http://www.oomori.com/"], nil]; NSXMLElement *channel = (NSXMLElement *)[NSXMLNode elementWithName:@"channel" children:[NSArray array] attributes:channelAttribute];