Guest User

Untitled

a guest
Feb 18th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3.  
  4. if ( [CLLocationManager locationServicesEnabled] ) {
  5. manager = [CLLocationManager alloc];
  6. [manager init];
  7.  
  8. manager.delegate = self;
  9. [manager startUpdatingHeading];
  10. }
  11. }
Add Comment
Please, Sign In to add comment