-
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
中
-
-