Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7089409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:55:05+00:00 2026-05-28T07:55:05+00:00

Is it OK to put the CLLocationManager Delegate methods in a Singleton class which

  • 0

Is it OK to put the CLLocationManager Delegate methods in a Singleton class which is a subclass of NSObject instead of UIViewController? I would like to do this as Id like to invoke the Singleton from the App Delegate and start getting the coordinates while the UI is loading

I have a locationcontroller class and I have the following initialization code in it

static locationController *sharedLocController = NULL;
+(locationController *) getSharedController
{   
    if (sharedLocController !=nil)
    {
        NSLog(@"locationController has already been created.....");
        return sharedLocController;
    }
    @synchronized(self)
    {
        if (sharedLocController == nil)
        {
            sharedLocController = [[self alloc] init];

        }
    }
    return sharedLocController;
}
//==============================================================================
+(id)alloc
{

    @synchronized([locationController class])
    {

        NSAssert(sharedLocController == nil, @"Attempted to allocate a second instance of a sharedLocMgr singleton.");
        sharedLocController = [super alloc];
        return sharedLocController;
    }
    return nil;
}
//==============================================================================
-(id)init
{
    self = [super init];

    if(sharedLocController !=nil)
    {

        if(!self.locMgr)
        {
            [self initLocationManager];

        }
    }



    return sharedLocController;
}
//==============================================================================
-(void)initLocationManager
{


    self.locMgr = [[CLLocationManager alloc] init];

    self.locMgr.delegate = self;
    self.locMgr.distanceFilter = kCLDistanceFilterNone;
    self.locMgr.desiredAccuracy = kCLLocationAccuracyBest;
    [self.locMgr startUpdatingLocation];
    NSLog(@"location manager object %@", locMgr);
}

Problem is that the self.locMgr object is always null.
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:55:06+00:00Added an answer on May 28, 2026 at 7:55 am

    Get rid of your alloc function. It isn’t necessary and is returning nil, which means this init call is getting called on a nil pointer:

    sharedLocController = [[self alloc] init];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I put my variables into a base class like this: public class BaseController :
I have a Delegate class that handles responses from CLLocationManager and prints them via
I put a command button on my VB6 form. I would like to make
Put them all in one separate folder structure or along with classes which implements
Context: I'm trying to improve the values returned by the iPhone CLLocationManager, although this
Put this in your location bar in IE javascript:location.href='http://www.google.com/search?q=something&lt=bar' Watch in horror as it
i put this in Global.asax.cs routes.MapWebFormRoute(Page, Page/{*anything}, ~/Page.aspx, false); how i can get value
I put this in to php.ini include_path = .;c:\php\includes;C:\wamp\zend\library C:\wamp\: here I put the
put filename will put the file to cureent directory in server. Which command i
I put this code together from a snippet from somewhere else, so I may

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.