0

我是IOS开发的新手。我像这样编写了实现文件。

   @implementation Utils

   +(id)alloc
   {
         return [self instance];
   }

   +(Utils *)instance
   {

        static Utils *utils = nil;

        if (!utils) {
           utils = [self init];
        }

        return utils;
   }

  -(Utils *)init
  {
       self = [super init];
       if (self) {
           mConst = [Constants instance];
           mCONT_REGEXP = [mConst CONT_REGEXP];
       }
       return self;
   }

当我打电话时

 [Utils instance];

我收到如下错误:

 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** +[Utils<0xbff54> init]: cannot init a class object.'

感谢您的回答。

4

2 回答 2

3

您是否尝试创建共享单例实例?

在这种情况下,请使用以下代码段:

+ (id)sharedInstance;
{
    static dispatch_once_t onceToken;
    static Utils *sharedUtilsInstance = nil;

    dispatch_once( &onceToken, ^{
        sharedUtilsInstance = [[Utils alloc] init];
    });

    return sharedUtilsInstance;
}

最好将其称为“sharedInstance”,以便更容易理解实例是共享的。

于 2013-08-05T11:15:22.603 回答
0

删除您的以下方法

+(id)alloc
   {
         return [self instance];
   }

并将代码编写为/....

   +(Utils *)instance
   {

        static Utils *utils = nil;

        if (!utils) {
           unit = [[unit alloc] init];
        }

        return utils;
   }
于 2013-08-05T11:15:07.617 回答