##一。发送的消息被自定义的导航栏遮住,如下图
这个时候需要修改三处frame才可以改过来
###1.在ChatViewController里面
###然后在EaseMessageViewController里面修改两处:
##二。当私聊与群聊的moreView里的要求不一样的时候。
在EaseChatBarMoreView里进行类型的判断与修改。
##三。Xcode突然出现could not build module foundation错误,而且会有一些系统的类报红:
解决方案:
在引用头文件开始加入#ifdef __OBJC__ 结束时加入#endif,例如
```
#ifndef PureStandard_PrefixHeader_pch
#define PureStandard_PrefixHeader_pch
#ifdef __OBJC__
#import "A.h"
#import "B.h"
#endif
#endif
```
##四。环信UI里的表情符号后面会有一些表情示例,如兔斯基之类的,如果我们不需要怎么去掉呢?
在EaseFacialView.m类里的
```
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView方法修改return [_emotionManagers count]/2;最后除以2.
```
##五.Implicit declaration of function 'NSEaseLocalizedString' is invalid in C99
```
Implicit conversion of 'int' to 'NSString * _Nullable' is disallowed with ARC
```
在.pch文件里加这个就好了
```
~#define NSEaseLocalizedString(key, comment) [[NSBundle bundleWithURL:[[NSBundle mainBundle] URLForResource:@"EaseUIResource" withExtension:@"bundle"]] localizedStringForKey:(key) value:@"" table:nil]
```
网友评论