- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *string = nil;
UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:string];
if (cell==nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:string];
}
//Array就是我的数组
cell.textLabel.text = [[Array objectAtIndex:indexPath.row] objectAtIndex:2];
cell.detailTextLabel.text = [[Array objectAtIndex:indexPath.row] objectAtIndex:6];