-
1.集成环信系统文件报错解决
集成环信系统文件报错-
如何解决
-
1.1找到 EaseUI 下
EaseUI-Prefix.pch文件 把其中
-
#define NSEaseLocalizedString(key, comment) [[NSBundle bundleWithURL:[[NSBundle mainBundle] URLForResource:@"EaseUIResource" withExtension:@"bundle"]] localizedStringForKey:(key) value:@"" table:nil]
拷贝到本地工程的.pch文件中
- ##### 1.2 自己pch文件中所有代码的首尾加上#ifdef __OBJC__和#endif
例:
#ifdef __OBJC__
#import "Masonry.h"
#endif
-
2.0 报错 Reason: image not found
-
如何解决
-
2.1 在项目中的
General中找到EMbedded Binaries添加用环信官方的库,比如我这里用的是HyphenateLite.framework就添加这个库到EMbedded Binaries中
-
-
