我想获取存储在数组中的对象的数据。但我不知道如何:/
这是我的对象的类类型:
#import <Foundation/Foundation.h>
@interface Account : NSObject
@property(strong, nonatomic) NSString *accountNumber;
@property(strong, nonatomic) NSString *accountName;
@end
Account *model = [[Account alloc]init];
for(int i=0; i<NUMBER_OF_CELL; i++){
[model setAccountName:[NSString stringWithFormat:@"Account %d",i]];
[model setAccountNumber:[NSString stringWithFormat:@"Number %d",i]];
[_accountArray addObject:model];
}
我在 UITableView 中列出了这个:
cell.accountLabel.text = ?
谢谢你的帮助!最好的祝福,