whytimber

Results 5 comments of whytimber

![image](https://cloud.githubusercontent.com/assets/10877654/24186411/2290e69c-0f13-11e7-9fce-e9d48ffd4d6f.png) copy node_modules/react-native-vector-icons/Fonts to your project

button.exclusiveTouch =YES;

I have the same issue. If FlatList is scrolling when refreshing the next page data is loaded, this issue will occur.

@jimneylee ,我看了一下您的源码,1、无网络的时候不能发送消息;2、有网络的时候,需要发送消息成功,才能写到数据库里,然后更新界面,现在有个问题就是网络不太顺畅的时候,聊天消息不会即时显示到界面上。 ``` 我现在无论有无网络都会把消息存起来,然后给每条消息一个id,当消息发送成功或失败更新当前消息的消息状态,不过感觉效果不好。有时候有bug ``` 下面是发送消息源码 - (BOOL)growingTextView:(HPGrowingTextView *)growingTextView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { // 由于底层点击发送会使键盘消失,故此处处理,不在growingTextViewShouldReturn中处理 if ([text isEqualToString:TEXT_NEXT_LINE]) { self.nextlineRange = range; ``` if (self.sendEnable) { if ([AFNetworkReachabilityManager sharedManager].isReachable) {...