我试图在网上找到答案,也许那里有答案,但我很难找到它。
概念 - 我从 SQL 下载了数据。我收集这些数据,然后一个数组在地图上显示注释。单击注释时,将显示正确的标题和副标题。单击注释上的按钮时,会弹出一个新视图,显示与该坐标相关的数据。
问题 - 在我从 SQL 下载的数据中,除了标题、坐标等之外,我还希望将其他数据传递给其他视图,例如图像、详细信息、价格、网站详细信息等。我可以在没有通过表格视图(索引:行方法)出现问题,但对于我的生活,而不是在地图视图中。
所以我的问题是 - 我如何收集注释拾取的信息并将其与其他数据一起传递到另一个视图。我尝试在带有注释的数组中添加额外的数据,并在用户单击按钮时生成它,但只有最后一个对象显示在数组中。
我知道我需要认真学习一些关于数组和传递数据的知识;但任何帮助将不胜感激。
我的热点课程:
@interface Hotspot : NSObject <MKAnnotation>
{
CLLocationCoordinate2D coordinate;
NSString *title;
NSString *subTitle;
NSString *detail;
float price;
NSString *contact;
}
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *subTitle;
@property (nonatomic, copy) NSString *detail;
@property (nonatomic) float price;
@property (nonatomic, copy) NSString *contact;
我的 MapView(Company 类保存我从 SQL 文件中获得的数据 - 我使用“companys”将所有数据加载到 ViewDidLoad 中,然后使用数组(这可以正常工作):-
- (void)loadAnnotations {
NSMutableArray *annotations = [[NSMutableArray alloc] init];
for (int i = 0; i < [companys count]; i++)
// storedNumber = i;
{
Company* company = [self.companys objectAtIndex:i];
CGFloat latitude = company.latitude;
CGFloat longitude = company.longitude;
Hotspot *myAnnotations = [[Hotspot alloc] init];
MKCoordinateRegion region = { { latitude , longitude } , { 12.0f , 12.0f } };
[myAnnotations setCoordinate: region.center];
[myAnnotations setSubTitle:company.type];
[myAnnotations setTitle:company.name];
[myAnnotations setDetail:company.details];
[myAnnotations setPrice:company.price];
[myAnnotations setContact:company.contact];
[annotations addObject: myAnnotations];
}
[promoView addAnnotations: annotations];
我的注释视图(一旦我添加了您的建议,这将需要更改:
- (MKAnnotationView *)mapView:(MKMapView *)map viewForAnnotation:(id <MKAnnotation>)annotation
{
NSLog(@"AnnotationView");
// if it's the user location, just return nil.
if ([annotation isKindOfClass:[MKUserLocation class]])
return nil;
// static NSString *AnnotationViewID = @"annotationViewID";
MKPinAnnotationView* pinView = (MKPinAnnotationView*)[promoView dequeueReusableAnnotationViewWithIdentifier:@"CustomPinAnnotationView"];
if (!pinView) {
pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:@"CustomPinAnnotation"] autorelease];
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
NSLog(@"Map View Title, %@", annotation.title);
[rightButton setTitle:annotation.title forState:UIControlStateNormal];
[rightButton addTarget:self
action:@selector(showDetails:)
forControlEvents:UIControlEventTouchUpInside];
pinView.rightCalloutAccessoryView = rightButton;
UIImageView *profileIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"profile.png"]];
pinView.leftCalloutAccessoryView = profileIconView;
[profileIconView release];
if ([annotation isKindOfClass:[Hotspot class]]) {
pinView.pinColor = MKPinAnnotationColorRed;
pinView.draggable =YES;
}
else
pinView.pinColor = MKPinAnnotationColorGreen;
pinView.animatesDrop = YES;
pinView.canShowCallout = YES;
}
else
pinView.annotation = annotation;
return pinView;
}
你的代码 -
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{
PromoViewController *promoController = [[PromoViewController alloc] initWithNibName:@"DetailView" bundle:nil];
promoController.hotspot = (Hotspot*)view.annotation;
[self.navigationController pushViewController:promoController animated:YES];
[promoController release];
对于 PromoViewController,我将 .h 文件设置为:
@interface PromoViewController : UIViewController
{
IBOutlet UILabel *nameLabel;
IBOutlet UILabel *detailLabel;
IBOutlet UILabel *typeLabel;
IBOutlet UILabel *contactLabel;
IBOutlet UILabel *priceLabel;
}
但我不是 100% 确定如何实现它,而且我确实收到了这一行的错误:-
promoController.hotspot = (Hotspot*)view.annotation;
说在对象 PromoViewController 上找不到属性热点。