Jamie

Results 7 comments of Jamie

@andy199609 It's not designed to move page manually, but it's easy to achieve this by export a method.😊

`- (void)scrollToPage:(NSInteger)page{ [self.scrollView setContentOffset: CGRectGetWidth(self.bounds) * page animated:YES]; } `

@Amanida I tried the code above, and it worked well. Btw, `UIViewAnimationCurveEaseInOut`->`UIViewAnimationOptionCurveEaseInOut`

Thank you for your comment. I guess I disabled animation just for avoiding a weird problem.

我也遇到这个问题,身边好几个人出现这个问题了

@ChenYilong 总觉得ChatKit可以做本地的用户信息缓存,毕竟涉及到的只是头像,名字的通用信息。关于你提到的头像更新问题,可以加一个接口让用户自己来调用更新用户信息。例如用户可以每次进入和具体某个人的聊天窗口触发一次update,甚至每次到聊天列表页触发一次全量的用户信息更新,但是会先显示老的信息,我觉得这个体验并没有什么问题。

Try this: `- (BOOL)externalAppRequiredToOpenURL:(NSURL *)URL { return NO; }`