[MapKit]实现委托方法

发布于 2024-11-01 14:57:30 字数 244 浏览 0 评论 0原文

RegionDidChangeAnimated 是一个立即调用的委托方法。 我想在调用此方法时将 BOLLEAN 变量设置为 NO,所以我实现了它:

-(void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
{

shouldAdjustZoom=NO;//this is the variable
} 

我对吗?

the regionDidChangeAnimated is a delegate method which gets called instantaneously.
I want to set a BOLLEAN variable to NO when this method will be called, so i implement it :

-(void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
{

shouldAdjustZoom=NO;//this is the variable
} 

am i right ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

中性美 2024-11-08 14:57:30

当区域更改时会调用此方法,如果添加参数,xcode 将找不到该方法并且不会进入该方法,因为它没有好的名称。
我想是的。

This method is called when the region has been changed, if you add a parameter, xcode will not find the method and will not enter it because it doesn't have the good name.
I think so.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文