gpt4 book ai didi

iphone - UITableview 和数据源作为 NSMutableArray

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:17:05 24 4
gpt4 key购买 nike

我是 iOS 开发新手,我遵循了一个简单的 UITableview 和详细 View 的教程。

这将设置我的数组:

- (void)viewDidLoad
{
[self setupArray];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}

- (void)setupArray
{
states = [[NSMutableDictionary alloc]init];
[states setObject:@"Thing 1" forKey:@"Subject 1"];
[states setObject:@"Thing 2" forKey:@"Subject 2"];
[states setObject:@"Thing 3" forKey:@"Subject 3"];
[states setObject:@"Thing 4" forKey:@"Subject 4"];

datasource = [states allKeys];
}

我有工作单元和详细 View 。如何向我的键添加更多对象?那可能吗?我需要每个主题 [key] 有很多属性(即一件事、一个人、一个地方、一种颜色)...

您能为我将其分解为最简单的术语吗?谢谢!

最佳答案

我不确定我是否理解您的问题,但每个键只能关联一个对象。在您的例子中,您使用的是 NSString 对象。如果您将 NSString 替换为您创建的某个对象,比如 AnObjectWithAThingAndAPersonAndAPlace,您可以将多个属性与每个键相关联。


我想我现在明白你想要什么了。您想要的不是具有关联数组的对象,而是对象数组。您可以使用 NSDictionary 对象来完成。

- (void)setupArray
{
NSMutableArray *objectArray = [[NSMutableArray alloc] init];

NSMutableDictionary *object1 = [[NSMutableDictionary alloc] init];
[object1 setObject:@"Apple" forKey:@"thing"];
[object1 setObject:@"Alex" forKey:@"person"];
[object1 setObject:@"Alabama" forKey:@"place"];
[object1 setObject:@"Azure" forKey:@"color"];
[objectArray addObject:object1];

NSMutableDictionary *object2 = [[NSMutableDictionary alloc] init];
[object2 setObject:@"Banana" forKey:@"thing"];
[object2 setObject:@"Bill" forKey:@"person"];
[object2 setObject:@"Boston" forKey:@"place"];
[object2 setObject:@"Blue" forKey:@"color"];
[objectArray addObject:object2];

datasource = [NSArray arrayWithArray:objectArray];
}

然后在你的 UITableViewDataSource 方法中

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger row = [indexPath row];
NSDictionary *object = [datasouce objectAtIndex:row];

...

}

并且您可以检索该对象的所有字符串。

如果我要这样做,我可能会创建一个包含数组的 plist 文件。那么您的 setupArray 方法可能如下所示:

- (void)setupArray
{
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"YourFileName" ofType:@"plist"];
NSDictionary *plistData = [NSDictionary dictionaryWithContentsOfFile:filePath];
datasource = (NSArray*)[plistData objectForKey:@"ObjectsForTableView"];
}

虽然我会添加一些评论...如果不是很明显,您添加到字典中的对象不必是 NSStrings,它们可以是任何对象,例如 NSNumber,它对于你的棒球运动员来说可能对你有用。此外,您可能希望创建自定义播放器对象而不是使用 NSDictionary。并且您可能想要像 Core Data 数据库这样的东西来存储和检索玩家(而不是对它们进行硬编码或从 plist 文件中获取它们)。不过,我希望我的回答能让您走上正确的道路。

关于iphone - UITableview 和数据源作为 NSMutableArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9343496/

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