Creator 1.3.3 升级1.4 ,ios android native 报1605错误

如题,模拟器正常,xcode 报https://github.com/cocos-creator/engine/blob/master/EngineErrorMap.md#1605

let self = this;
cc.loader.loadRes(cc.gameLocalized.logoPrefabPath(), function (err, prefab) {
    let title = cc.instantiate(prefab);
    title.parent = self.game_title_node;
    // self.game_title_node.addChild(title);
});

self.game_title_node 是空节点,this.node 也是通过prefab创建出来的
将addChild 替换成parent = 后,没有报1605错误,但实例化的title对象还是没有渲染出来。

好吧,通过属性赋值,绕过了,多耗点内存,没办法

将prefab替换成其他简单的可以正常加载,关键是1.3.3没问题,1.4 模拟器\浏览器 都没问题