作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 iOS 中使用 Mapkit 创建一个应用程序,我真正想做的是在 map 上显示一个特定位置......暂停...... ..然后缩放到用户位置。
我的代码中有以下内容,但不知道如何应用暂停或是否可行?
CLLocationCoordinate2D zoomLocation; //Sheffield Centre ,
zoomLocation.latitude = 53.381129;
zoomLocation.longitude= -1.470085;
MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(zoomLocation, 1.0*METERS_PER_MILE, 1.0*METERS_PER_MILE);
[_mapView setRegion:viewRegion animated:YES];
//_mapView.userTrackingMode=YES;
非常感谢任何人的帮助!
最佳答案
如果你想在一定时间后执行一些 Action ,你可以使用 GCD dispatch_after
:
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
[_mapView setRegion:viewRegion animated:YES];
});
关于ios - 显示特定位置 MKMapkit 后缩放到用户位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17640885/
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!