开发者

How To Structure Array Into UITableView?

I have an array with the following format:

[NSArray arrayWithObjects:
 [NSArray arrayWithObjects:@"number",@"name",@"date",@"about",开发者_Go百科nil],
 [NSArray arrayWithObjects:@"number",@"name",@"date",@"about",nil],
 [NSArray arrayWithObjects:@"number",@"name",@"date",@"about",nil],
 [NSArray arrayWithObjects:@"number",@"name",@"date",@"about",nil],
 nil];

I want to structure this data to load into my tableView.

Each row of the tableview should correspond to each row of the array, then the title of each cell should correspond to the subarray objectAtIndex 2 for the name.


Suppose your array is named myData:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
  // Return the number of sections.
  return 1;
}

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

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

  // Configure the cell...
  NSArray *obj = [myData objectAtIndex:indexPath.row];
  cell.textLabel.text = (NSString*)[obj objectAtIndex:1]; //note: 0=>number; 1=>name,..

  return cell;
}

In favor of reusability, I would suggest to replace the subarrays with NSDictionaries so that you can get e.g. the name by calling [dict objectForKey:@"name"].

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜