我创建了这个类来存储关于 CD-rooms 的 Rss 提要:
CdObject.h
@interface CdObject : NSObject{
NSString *title,*artist,*country,*company,*price,*year;
}
@property(nonatomic,retain)NSString *title,*artist,*country,*company,*price,*year;
光盘对象.m
#import "CdObject.h"
@implementation CdObject
@synthesize title,artist,country,company,price,year;
@end
然后在解析 xml 时,我正在创建此类的新实例,填充它们的属性(标题、艺术家等)并将它们推入 NSMutableArray(cdListArray)
我如何从 cdListArray 中读取其中一个对象的属性?
Ex:NSLog(@"%@",[cdListArray objectAtIndex:0].title) ???