Searching a TableView of annotations
I had no idea how to set up a database when i started so i have 80 annotations that all look like this workingCoordinate.latitude = 50.795825; workingCoordinate.longitude = -1.103139; MainViewAnnotation *Levant = [[MainViewAnnotation alloc] initWithCoordinate:workingCoordinate]; [Levant setTitle:@"Levant"]; [Levant setSubtitle:@"Unit R09, Gunwharf Quays"]; [Levant setAnnotationType:MainViewAnnotationTypePortsmouth]; [mapView addAnnotation:Levant]; They are grouped into 22 cities through the MainViewAnnotationType, which is coded as follows: - (NSInteger)numberOfSectionsInTableView:(UITableView