Implement an Access app to authorize positioning

Source: Internet
Author: User

1. Import Corelocation.framework

2, add to the Plist file:

nslocationwheninusedescription//allow apps to use a targeted cue when using the app
nslocationalwaysusagedescription//allow apps to use a targeted cue when not using the app

3, add in AppDelegate.h

#import <CoreLocation/CoreLocation.h>
@interface appdelegate:nsobject <CLLocationManagerDelegate>//agreement
@property (nonatomic) Cllocationmanager *locationmanager;
@end

4, add in APPDELEGATE.M

-(BOOL) Application: (UIApplication *) application didfinishlaunchingwithoptions: (Nsdictionary *) launchOptions {

Override point for customization after application launch.

[UIApplication sharedapplication].idletimerdisabled = TRUE;

Self.locationmanager = [[Cllocationmanager alloc] init];

Self.locationManager.delegate = self;

return YES;

}

-(void) Locationmanager: (Cllocationmanager *) Manager didchangeauthorizationstatus: (clauthorizationstatus) status

{

Switch (status) {

Case kclauthorizationstatusnotdetermined:

if ([Self.locationmanager respondstoselector: @selector (requestalwaysauthorization)]) {

[Self.locationmanager requestwheninuseauthorization]; Nslocationwheninusedescription

[Self.locationmanager requestalwaysauthorization];

}

Break

Default

Break

}

}

Implement an Access app to authorize positioning

Related Article

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.