我有一个mapvIEw,其中注释被放置.现在我想要一个popover注释.
我应该怎么做
1.在故事板中创建一个popover控制器并从delgate方法中推送它.
2.通过所有子视图和内容创建程序化的d出窗口视图?
我想用第一种方法帮助我.
- (voID)mapVIEw:(MKMapVIEw *)mapVIEw annotationVIEw:(MKAnnotationVIEw *)vIEw calloutAccessoryControlTapped:(UIControl *)control
{
// UIVIEwController * controller = [self.storyboard instantiateVIEwControllerWithIDentifIEr:@“annotationPopUp”];
[self performSegueWithIDentifIEr:@“annotationPush”sender:nil];
}
- (voID)mapVIEw:(MKMapVIEw *)mapVIEw dIDSelectAnnotationVIEw:(MKAnnotationVIEw *)vIEw{ self.popover = [[UIPopoverController alloc] initWithContentVIEwController:yourVIEwController]; [self.popover presentPopoverFromrect:vIEw.bounds inVIEw:vIEw permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];}总结
以上是内存溢出为你收集整理的ios – 用于注释视图的PopOver全部内容,希望文章能够帮你解决ios – 用于注释视图的PopOver所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)