gpt4 book ai didi

iphone - UITableView(不使用导航模板)从 plist 获取特定数据

转载 作者:行者123 更新时间:2023-12-03 20:00:15 26 4
gpt4 key购买 nike

我正在使用《Beginning iPhone Development (Exploring the iPhone SDK)》一书第 210 页上的示例,它与我想要做的类似,但该特定示例因使用 TableView 中的部分而变得复杂。我的 plist 中有一个特定的层次结构...

Root  ---- Dictionary
Rows ---- Array
Item 0- Dictionary
fullName ---- String
address ---- String
Item 1 ---- Dictionary
fullName ---- String
address ---- String

所以我有一个 UITableView,它占据了该“屏幕”上 View 的一小部分。 View 的其余部分有其他元素,所以我选择 nut 来使用导航模板。

我使用的代码不匹配,因为我真的不清楚调用哪些字段。

有人可以告诉我一个非常简单的例子,我如何列出该表中的所有“firstNames”。如果我的 plist 有问题,请让我具体知道要更改的内容。

简而言之,我想循环遍历所有 Item # 字典以列出所有名字。我的设计类似于联系人列表,但不完全是联系人列表。

现在我正在使用这段代码,它只显示单词“Rows”,我将单词 rows 更改为 plist 中的 Rows1,并且它显示出来,因此它正在抓取该“数组项”。我希望我说的是对的。

-(void)viewDidLoad {    
NSString *path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"];

NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
self.names = dict;
[dict release];

NSArray *array = [[names allKeys] sortedArrayUsingSelector:@selector(compare:)];
self.listData = array;

[super viewDidLoad];
}

 

-(NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section {
return [self.listData count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *SimpleTableIdentifier = @"Identifier";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SimpleTableIdentifier] autorelease];
}

NSUInteger row = [indexPath row];
cell.textLabel.text = [listData objectAtIndex:row];
return cell;
}

我在网络上搜索了好几天,试图找到一个简单的示例,该示例使用 plist 层次结构来列出不属于导航模板的表格中的项目。

非常感谢

最佳答案

我写了一个example code ,那是一本通讯录。它从 plist 读取数据。

plist:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>name</key>
<string>Vikingo</string>
<key>familyname</key>
<string>Segundo</string>
<key>street</key>
<string>Avenida Roca y Coranado</string>
<key>number</key>
<integer>20</integer>
<key>city</key>
<string>Santa Cruz de la Sierra</string>
<key>province</key>
<string>Santa Cruz</string>
<key>country</key>
<string>Bolivia</string>
<key>pictureurl</key>
<string>vikingosegundo.png</string>
</dict>
<dict>
<key>name</key>
<string>Santa</string>
<key>familyname</key>
<string>Claus</string>
<key>street</key>
<string>Avenida Roca y Coranado</string>
<key>number</key>
<integer>20</integer>
<key>city</key>
<string>Santa Cruz de la Sierra</string>
<key>province</key>
<string>Santa Cruz</string>
<key>country</key>
<string>Finland</string>
<key>pictureurl</key>
<string>robot-santa.png</string>
</dict>
</array>
</plist>

阅读plist:

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"contacts" ofType:@"plist"];
contacts = [[NSArray arrayWithContentsOfFile:plistPath] retain];

在表格 View 中显示联系人:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}


// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [contacts count];
}


// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

NSDictionary *dict = [contacts objectAtIndex:indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@ %@", [dict objectForKey:@"name"], [dict objectForKey:@"familyname"]];

return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {


DetailContactViewController *detailViewController = [[DetailContactViewController alloc] initWithNibName:@"DetailContactView" bundle:nil];
detailViewController.contact = [contacts objectAtIndex:indexPath.row];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:detailViewController animated:YES];

[detailViewController release];

}

关于iphone - UITableView(不使用导航模板)从 plist 获取特定数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4319923/

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