0

我有一个 ios 6 应用程序,它在 App Delegate 中实例化 3 个单例,如下所示:

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
 {
     Constants *constSingleton = [Constants getSingleton];
     EntryContainerSingleton * eSingle = [EntryContainerSingleton getSingleton];   
     LocationMgrSingleton *loc = [LocationMgrSingleton getSingleton];
     return YES; 
 }

然而,问题发生在所有三个调用同时在不同的线程中执行。EntryContainerSingleton 依赖于常量来完成一些任务。但是在执行这些任务时,常量并没有完全实例化。

我该如何处理这种情况?我在谷歌上搜索,在以前的 iOS 版本中,人们使用 NSOperation 队列来执行此操作。

但是,我不确定这在 iOS 6 中是否是一个好方法。即使它是我之前没有使用过 NSOperation 队列,并且网络上的所有示例都来自以前的版本,并且在某个不是 APP 的类中实例化代表。

如果有人可以给我一些关于如何在 App Delegate 中执行此操作的示例代码让我开始我真的很感激

编辑


条目控制器单例

 -(id)init
 {
    self = [super init];
    NSLog(@"%s %d", __PRETTY_FUNCTION__, __LINE__);

    [self getEntriesFromServer];
      ..............
      .............   
    constSingleton = [Constants getSingleton];
    [self addSelfAsObserverToNotifications];
    return self;
  }

内部条目控制器单例

 -(void)getEntriesFromServer
 {
     NSLog(@"%s %d", __PRETTY_FUNCTION__, __LINE__);
     if(!constSingleton)
     {
        NSLog(@"constSingleton is null");
     }
     __block NSString *dateString1 = [constSingleton getCurrentDateTime];
     NSLog(@"Sending notification: Async Call started successfully at time %@", dateString1);
     [[NSNotificationCenter defaultCenter] postNotificationName:@"didStartAsyncProcess"
                                                    object:self];


  .......

}


控制台输出

 [96894:c07] -[AppDelegate application:didFinishLaunchingWithOptions:] 21
 [96894:c07] +[Constants getSingleton] 39
 [96894:c07] -[Constants init] 65
 [96894:c07] -[EntryContainerSingleton init] 75
 [96894:c07] -[EntryContainerSingleton getEntriesFromServer] 154
 [96894:c07] constSingleton is null
 [96894:c07] Sending notification: Async Call started successfully at time (null)
 [96894:c07] -[Constants incrementNumBackgroundNetworkTasksBy1:] 87
4

1 回答 1

0

如果 Entries 单例需要访问 Constants 单例,它应该调用 [Constants getSingleton] 来获取它。确保您正确实现了单例方法(请参阅Objective-C 单例实现,我做得对吗?

每次需要访问单例对象时,都应该调用 [ClassName getSingleton]。没有任何理由将单例存储为应用程序委托中的实例变量。

于 2013-02-15T03:53:07.057 回答