IOS4.0系统!定位一关闭就自动打开!根本就关不上!!而且飞行模式也切换不了 飞行模式打开后 显示搜索信号 然后是无服务 正常状态下应该显示飞机符号呀!好像是反了!混乱了呀!重启之后就都好了!为什么会出现这种情况呀?!我之前就安了几个软件而已呀!而且跟定位没关系!
成都创新互联公司基于成都重庆香港及美国等地区分布式IDC机房数据中心构建的电信大带宽,联通大带宽,移动大带宽,多线BGP大带宽租用,是为众多客户提供专业眉山服务器托管报价,主机托管价格性价比高,为金融证券行业服务器托管,ai人工智能服务器托管提供bgp线路100M独享,G口带宽及机柜租用的专业成都idc公司。
方法/步骤
创建工程项目和视图控制器
1、创建一个Sing View Application工程项目;
2、为项目命名,生成工程文件。
为适配iOS8需要配置info.plist文件
添加2行:
NSLocationAlwaysUsageDescription 设为Boolean类型 = YES
NSLocationWhenInUseUsageDescription 设为Boolean类型 = YES
引入CoreLocation框架
包含头文件:#import CoreLocation/CoreLocation.h
引用代理:CLLocationManagerDelegate
声明定位管理器: CLLocationManager *locationManager;
初始化对象
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
self.locationManager.distanceFilter = 1.0;
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
if([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)])
{
[self.locationManager requestAlwaysAuthorization]; // 永久授权
[self.locationManager requestWhenInUseAuthorization]; //使用中授权
}
实现定位代理更新位置成功回调
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
NSLog(@"经度:%f", newLocation.coordinate.longitude);
NSLog(@"纬度:%f", newLocation.coordinate.latitude);
NSLog(@"速度:%f 米/秒", newLocation.speed);
CLGeocoder * geocoder = [[CLGeocoder alloc] init];
[geocoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error) {
NSDictionary *locationInfo = [[NSDictionary alloc]init];
for (CLPlacemark * placemark in placemarks) {
locationInfo = [placemark addressDictionary];
}
NSLog(@"%@",locationInfo);
}];
}
定位代理失败回调
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
NSLog(@"%@", error);
}
开启/停止位置更新
开启:[self.locationManager startUpdatingLocation];
停止:[self.locationManager stopUpdatingLocation];
在viewDidLoad方法里面开启定位更新服务。
运行Run查看控制台All Output
如果您喜欢,请按投票;如果有疑问,欢迎一起探讨。
使用百度地图 sdk 定位包啊
现在百度地图把 地图sdk 和 定位sdk 分开了,你需要分别添加到项目里去。
1、请求获得应用使用时的定位服务授权,注意使用此方法前在要在info.plist中配置NSLocationWhenInUseUsageDescription
2、 请求获得应用一直使用定位服务授权,注意使用此方法前要在info.plist中配置NSLocationAlwaysUsageDescription
@property (strong, nonatomic) CLLocationManager *mgr;//定位
-(NSDictionary *)getIPAddresses
{
NSMutableDictionary *addresses = [NSMutableDictionary dictionaryWithCapacity:8];
// retrieve the current interfaces - returns 0 on success
struct ifaddrs *interfaces;
if(!getifaddrs(interfaces)) {
// Loop through linked list of interfaces
struct ifaddrs *interface;
for(interface=interfaces; interface; interface=interface-ifa_next) {
if(!(interface-ifa_flags IFF_UP) /* || (interface-ifa_flags IFF_LOOPBACK) */ ) {
continue; // deeply nested code harder to read
}
const struct sockaddr_in *addr = (const struct sockaddr_in*)interface-ifa_addr;
char addrBuf[ MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN) ];
if(addr (addr-sin_family==AF_INET || addr-sin_family==AF_INET6)) {
NSString *name = [NSString stringWithUTF8String:interface-ifa_name];
NSString *type;
if(addr-sin_family == AF_INET) {
if(inet_ntop(AF_INET, addr-sin_addr, addrBuf, INET_ADDRSTRLEN)) {
type = IP_ADDR_IPv4;
}
} else {
const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6*)interface-ifa_addr;
if(inet_ntop(AF_INET6, addr6-sin6_addr, addrBuf, INET6_ADDRSTRLEN)) {
type = IP_ADDR_IPv6;
}
}
if(type) {
NSString *key = [NSString stringWithFormat:@"%@/%@", name, type];
addresses[key] = [NSString stringWithUTF8String:addrBuf];
}
}
}
// Free memory
freeifaddrs(interfaces);
}
return [addresses count] ? addresses : nil;
}
-(void)locationCityName
{
// 1.获取用户的授权状态(iOS7只要使用到定位,就会直接请求授权)
CLAuthorizationStatus status = [CLLocationManager authorizationStatus];
if (status == kCLAuthorizationStatusNotDetermined) {
/*
if ([[UIDevice currentDevice].systemVersion doubleValue] = 8.0) {
[mgr requestAlwaysAuthorization];
}
*/
if ([self.mgr respondsToSelector:@selector(requestAlwaysAuthorization)]) {
[self.mgr requestAlwaysAuthorization];
}
}
// 2.开始定位(当调用该方法,系统就会不停的更新用户的位置)
[self.mgr startUpdatingLocation];
}
//CLLocationManagerDelegate的代理方法
#pragma mark - 懒加载
- (CLLocationManager *)mgr
{
if (_mgr == nil)
{
self.mgr = [[CLLocationManager alloc] init];
// 设置代理,在代理方法中可以拿到用户的位置
self.mgr.delegate = self;
// 设置定位的精度(精度越高越耗电)
self.mgr.desiredAccuracy = kCLLocationAccuracyBestForNavigation;
// 设置当用户移动的时候,重新来定位
self.mgr.distanceFilter = 10.0;
}
return _mgr;
}
//更新位置
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
//此处locations存储了持续更新的位置坐标值,取最后一个值为最新位置,如果不想让其持续更新位置,则在此方法中获取到一个值之后让locationManager stopUpdatingLocation
CLLocation *currentLocation = [locations lastObject];
// 获取当前所在的城市名
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
//根据经纬度反向地理编译出地址信息
[geocoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *array, NSError *error)
{
if (array.count 0)
{
CLPlacemark *placemark = [array objectAtIndex:0];
//将获得的所有信息显示到label上
NSLog(@"%@",placemark.name);
//获取城市
NSString *city = placemark.locality;
if (!city)
{
//四大直辖市的城市信息无法通过locality获得,只能通过获取省份的方法来获得(如果city为空,则可知为直辖市)
city = placemark.administrativeArea;
}
NSLog(@"----city---- %@ ",city);
// NSLog(@"-----------%@-",placemark)
[UserDefaultsData setAddressesCity:city];
}else
{
}
}];
//系统会一直更新数据,直到选择停止更新,因为我们只需要获得一次经纬度即可,所以获取之后就停止更新
[manager stopUpdatingLocation];
}
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
if (error.code == kCLErrorDenied)
{
// 提示用户出错原因,可按住Option键点击 KCLErrorDenied的查看更多出错信息,可打印error.code值查找原因所在
}
}
爱思助手。ios可以通过爱思助手,用户可以修改其移动设备的定位。设置成功后,手机中的其他应用工具会自动定位到虚拟位置。