在点击相应的注释视图后,如何在mkannotationview中实现字幕的更新

时间:2012-08-01 08:36:44

标签: ios mkannotation mkannotationview subtitle

就像googlemap的实现一样。
点击注释视图后,会显示标注气泡,然后获取网络以获取一些信息。我们得到它之后,我们需要更新注释视图的副标题。登记/> 如何实现这种效果。谢谢!

1 个答案:

答案 0 :(得分:0)

对于KVO已经通过注释视图实现,您只需要实现 这两个功能由你自己完成:

@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *subtitle;

然后当您需要更改注释视图上的标题或副标题时

self.title = @"New title!";
[self setSubtitle:@"New subtitle!"];

然后将显示相应注释视图的更新。

点击here,这就是答案,我对此表示赞赏。