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

Posted

技术标签:

【中文标题】UITableView(不使用导航模板)从 plist 获取特定数据【英文标题】:UITableView (not using Navigation Template) getting specific data from plist 【发布时间】:2010-11-30 23:52:53 【问题描述】:

我正在使用“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,它占据了那个“屏幕”上的一小部分视图。视图的其余部分还有其他元素,所以我选择了 nut 来使用导航模板。

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

谁能给我看一个非常简单的例子,我如何列出该表中的所有“名字”。如果我的 plist 有问题,请告诉我具体要更改的内容。

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

现在我正在使用这个代码,它只显示单词“Rows”,我在我的 plist 中将单词 rows 更改为 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 层次结构来列出不属于导航模板的表格中的项目。

非常感谢

【问题讨论】:

【参考方案1】:

我写了一个example code,那是一个通讯录。它从 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];

在表格视图中显示联系人:

- (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];


【讨论】:

酷。我看到您的 plist 中没有“Rows”数组。我会调整我的。 我想看看你的 plist。为什么你有一个 nsdictionary 作为根元素? 我正在尝试使用您的示例代码,因为它使用了那些可怕的导航模板之一。 我刚刚将您粘贴到项目中并更改了一些字符串值。 可能是,我不确定——我一个月前写的。但是模板与否:你的问题是什么?

以上是关于UITableView(不使用导航模板)从 plist 获取特定数据的主要内容,如果未能解决你的问题,请参考以下文章

加载 UITableView 表单 UIView

从 iOS 11 搜索控制器导航时不需要的 UITableView 重新加载动画

使用导航按钮从 UITableView 中的选中元素返回数据

iPhone:标签栏下的 UITableView 滚动

UITableView 不遵循约束

UITableView 与导航栏不对齐(单元格在旋转时卡在下面)