码迷,mamicode.com
首页 > 移动开发 > 详细

ios-晋级之路 在模拟器中测试定位

时间:2015-08-14 11:16:06      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

添加这段代码

@interface CLLocationManager (Simulator)

@end

 

@implementation CLLocationManager (Simulator)

 

-(void)startUpdatingLocation

{

    float latitude = 32.061;

    float longitude = 118.79125;

    CLLocation *setLocation= [[CLLocation alloc] initWithLatitude:latitude longitude:longitude] ;

    [self.delegate locationManager:self didUpdateToLocation:setLocation

                      fromLocation:setLocation];

}

@end

就ok拉

ios-晋级之路 在模拟器中测试定位

标签:

原文地址:http://www.cnblogs.com/fanxinguu/p/4729317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!