注册

IOS 按照文档开始集成3.0,运行时下面就输出EMCoreLog::EMCoreLog(),求大牛

如题,新建的项目,刚初始化完
EMOptions *options = [EMOptions optionsWithAppkey:@"douser#istore"];
    options.apnsCertName = @"istore_dev";
    [[EMClient sharedClient] initializeSDKWithOptions:options];
   
然后
EMError *error = [[EMClient sharedClient] registerWithUsername:@"wuhaonan" password:@"1234"];
    if (error==nil) {
        NSLog(@"注册成功");
    }else{
        NSLog(@"注册失败");
    }

输出的最上面是EMCoreLog::EMCoreLog(),然后注册登录都失败了
已邀请:
打印error是什么
SDK集成没什么问题,集成easeUI,

屏幕快照_2016-03-04_上午9.07_.04_.png


接着
#define NSEaseLocalizedString(key, comment) [[NSBundle bundleWithURL:[[NSBundle mainBundle] URLForResource:@"EaseUIResource" withExtension:@"bundle"]] localizedStringForKey:(key) value:@"" table:nil]
拷进pch,然后就


屏幕快照_2016-03-04_上午9.16_.00_.png


该如何解决

要回复问题请先登录注册