在地图标注上的 UIButton 上设置背景

setting background on UIButton on Map Callout

您好,我正在尝试在附加到我的 MapView MKAnnotation 标注视图的细节披露 UIButton 上设置背景图片。检查 Whosebug 上有关于如何设置它的一致示例,但它似乎不适用于我的标注 UIButton。我的问题是,这是否不起作用,仅仅是因为 mapview 还是我错过了其他东西? 这是我的代码:

// If an existing pin view was not available, create one.
            pinView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"CustomPinAnnotationView"];
            pinView.canShowCallout = YES;
            pinView.image = [UIImage imageNamed:@"Tch4"];
            //pinView.calloutOffset = CGPointMake(0, 32);
            pinView.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
            UIImage *btnImage = [UIImage imageNamed:@"4stars"];
            [pinView.rightCalloutAccessoryView setBackgroundImage:btnImage forState:UIControlStateNormal];

我在最后一行收到错误。错误是:没有用于 UIView 的可见接口声明选择器 'setbackgroundimage: forstate'

感谢您对此的帮助

如果您的 typebutton DetailDisclosure,则无法设置背景图片。 您可以将子视图图像添加到 rightCalloutAccessoryView 但没有按钮..

因此,如果您仍然使用 typebutton DetailDisclosure,则无法设置背景

您的问题是 rightCalloutAccessoryView returns 一个 UIView 实例。并且 UIView 不响应 setBackgroundImage:forState: 方法。

您正在寻找的是添加一个 UIButton 而不是像这样的东西:

UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeCustom];
infoButton.frame = CGRectMake(0, 0, 32, 32); // Set your own frame 
[infoButton setBackgroundImage:btnImage forState:UIControlStateNormal];
[infoButton setBackgroundImage:btnImage forState:UIControlStateSelected];
pinView.rightCalloutAccessoryView = infoButton;