Top "Cllocationmanager" questions

The CLLocationManager class defines the interface for configuring the delivery of location- and heading-related events to your application

Why requestWhenInUseAuthorization doesn't prompt the user for access to the location?

In my viewDidLoad method I have locationManager = [[CLLocationManager alloc]init]; // initializing locationManager locationManager.delegate = self; // we set the delegate of …

objective-c xcode ios8 cllocationmanager
How to check if location services are enabled for a particular app prior to iOS 4.2?

How can I check if the user has allowed location for mu app? Normally I would use authorizationStatus method of …

iphone cllocationmanager ios-4.2
iOS 8 Map Kit Obj-C Cannot Get Users Location

I am working with Map Kit in iOS 8 using Obj-C NOT SWIFT. I cannot get the device location it is …

objective-c mapkit cllocationmanager ios8
How to set accuracy and distance filter when using MKMapView

When i use setShowsUserLocation with MKMapView to track user location, how do I set the accuracy and distance filter? I …

iphone ios ipad mkmapview cllocationmanager
How to get Location user with CLLocationManager in swift?

I have this code on my view controller but this not working: import UIKit import CoreLocation class ViewController: UIViewController, CLLocationManagerDelegate { …

ios swift core-location cllocationmanager
Implement CLLocationManagerDelegate methods in Swift

I've been trying to get this to work for awhile now, and I've come here to ask- how do I …

cllocationmanager swift ios8
CLLocationManager startUpdatingLocation not calling locationManager:didUpdateLocations: or locationManager:didFailWithError:

I'm trying to use the CLLocationManager framework in my iOS project to access the user's location but when I call […

ios objective-c cllocationmanager
Get location name from Latitude & Longitude in iOS

I want to find current location name from latitude and longitude, Here is my code snippet I tried but my …

iphone ios ipad cllocationmanager reverse-geocoding
didUpdateLocations instead of didUpdateToLocation

With the release of iOS6 Apple wants us to use didUpdateLocations instead of didUpdateToLocation. Can anyone explain how to properly …

ios objective-c swift core-location cllocationmanager
CLLocationCoordinate2D to CLLocation

i have the following loop in my viewDidLoad: for(int i=1; i<[eventsArray count]; i++) { NSArray *componentsArray = [[eventsArray objectAtIndex:…

iphone cocoa-touch cllocationmanager