Steps to start the location service after the core IOS8 framework

Source: Internet
Author: User

1. You need to call the following function "IOS 8 dedicated" before using corelocation:
IOS 8 has made some modifications to the location, including the method of locating authorization, and Cllocationmanager adds the following two methods:
(1) Always allow access to location information
-(void) requestalwaysauthorization;
(2) Allow access to location data during use of the application
-(void) requestwheninuseauthorization;
Examples are as follows:
Self.locationmanager = [[Cllocationmanager alloc]init];
_locationmanager.delegate = self;
_locationmanager.desiredaccuracy = Kcllocationaccuracybest;
_locationmanager.distancefilter = 10;
[_locationmanager requestalwaysauthorization];//Add this sentence
[_locationmanager startupdatinglocation];
  
2. Add the following configuration in the Info.plist file:
(1) nslocationalwaysusagedescription
(2) Nslocationwheninuseusagedescription
The values of these two keys are the description of the authorization alert, and the example configuration is as follows [tick show Raw keys/values to add]:

Steps to start the location service after the core IOS8 framework

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.