以下是我在viewcontroller中使用appdelegate中提供的plist信息的代码。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.tableDataSource count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
NSDictionary *dictionary = [self.tableDataSource objectAtIndex:indexPath.row];
cell.text = [dictionary objectForKey:@"myobject"];
这使用了appdelegate中使用的plist,并使用我的plist中有多少个入口来填充表格中的单元格。
我要做的下一件事是为每个填充了相应“密钥”的单元推送一个非动态viewcontoller。
因此,myobject单元格(选中时)会推送myobject视图控制器。 yourobject单元格(选中时)会推动yourobject视图控制器。
All the way down.
我怎么能这样做?
答案 0 :(得分:1)
希望这有帮助!