koichirose
koichirose

Reputation: 1825

CLLocationManager Singleton - is this the way to go?

I'm building an app with two simple views (in a tabbar).

I started by using MKMapView's showsUserLocation. Then I read that it's better to use a CLLocationManager singleton instance, so I followed this blog post roughly: http://jinru.wordpress.com/2010/08/15/singletons-in-objective-c-an-example-of-cllocationmanager/

Now this pretty much works, but I'm wondering if it's the correct way to do things.

Also, I couldn't find a way to show the default blue dot instead of a custom pin. I read that I should use MKMapView's showsUserLocation, but wouldn't that create another instance of CLLocationManager?

Thanks

Upvotes: 12

Views: 4184

Answers (1)

Patrick Tescher
Patrick Tescher

Reputation: 3447

The method of creating a CLLocationManager singleton in the blog post you mentioned looks good. As for using showsUserLocation in combination with a CLLocationManager, it should be fine. Apple designed Core Location to be used by multiple applications at once. I won't cause too many issues.

Upvotes: 4

Related Questions