信息来自UITableViewController中的plist

时间:2011-08-11 04:23:59

标签: objective-c ios

我有一个plist,我试图将数据从显示在充当DetailViewController的UITableViewController中显示。我知道如何在UIPickerView中显示plist中的数据。它是一样的,还是应该做出哪些改变?

我拥有的是:

- (void)viewDidLoad
{

    [super viewDidLoad];

    NSBundle*bundle=[NSBundle mainBundle];
    NSString *path = [bundle pathForResource:@"Grammar" ofType:@"plist"];
    grammarArray = [[NSArray alloc] initWithContentsOfFile:path];

    [self configureView];
}


- (void)tableView:(UITableView *)tableViewdidSelectRow:(NSInteger)rowinComponent:(NSInteger)component
{

}

我从哪里开始?

1 个答案:

答案 0 :(得分:0)

这很直接:

能够使用UITableViewCell来显示UITableViewController中的数据

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath委托方法。

在此方法中,您可以设置当前UITableViewCell的各种成员。

例如textLabeldetailTextLabel

You can further extend a UITableViewCell and add more features to it.