gpt4 book ai didi

ios - 如何访问存储在数组中的对象的数据?

转载 作者:行者123 更新时间:2023-11-28 20:22:07 24 4
gpt4 key购买 nike

我想获取存储在数组中的对象的数据。但我不知道如何:/

这里是我的对象的类类型:

#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 = ?

谢谢你的帮助!最好的问候,

最佳答案

Account *model = [_accountArray objectAtIndex:[indexPath row]];
cell.accountLabel.text = model. setAccountName;

关于ios - 如何访问存储在数组中的对象的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15499084/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com