在我的mapview项目中,我已将自定义注释的NSMutableArray传递给表视图。 在tha mapview .m代码:
MyLocation *nota =[[MyLocation alloc] initWithName:name time:horario];
[_mapView addAnnotation:nota]; //add location to map
[mapViewAnnotations addObject:nota]; //copy "nota" to the new array...
}
TablaViewController *tablaController =[[TablaViewController alloc]initWithNibName:@"TablaViewController" bundle:nil];
tablaController.locationFromMap = mapViewAnnotations; //... then I pass array to table
表中的视图:
- (void)viewDidLoad
{
[super viewDidLoad];
self.navigationItem.title = @"Locations";
listOfItems = [[NSMutableArray alloc] init];
for (int i = 0; i < [locationFromMap count]; i++){
MyLocation *location = [locationFromMap objectAtIndex:i];
//Add items
[listOfItems addObject:location.name];
NSLog(@" list count : %d",[listOfItems count]);
}
}
其中locationFromMap是一个自定义位置的NSmtable数组,其中包含一些属性,如name,subname等。
使用:
- (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];
}
NSString *cellValue = [listOfItems objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;
return cell;
}
位置“名称”在表格中正确显示。 我的问题是,当点击相对行时,如何回到聚焦于具体位置的地图。 Perarps我的方法错了吗?
提前致谢。
答案 0 :(得分:1)
这样:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
MyLocation *loc = [locationFromMap objectAtIndex:indexPath.row];
MKCoordinateRegion r = MKCoordinateRegionMake(loc.coordinate, MKCoordinateSpanMake(0.005, 0.005));
[self.mapView setRegion:r animated:YES];
}
(键入内联但是类似的东西)