GKK
GKK
## Base Info for this issue 继承了LCCKConversationViewController导致部分依赖[self class]来取bundle的代码取不到。 如LCCKConversationViewController.m 行914 didTapLinkText方法中取Alert的title使用了LCCKLocalizedStrings,其定义 ``` NSLocalizedStringFromTableInBundle(key, @"LCChatKitString", [NSBundle lcck_bundleForName:@"Other" class:[self class]], nil) ``` 改成以下代码后正常 ``` NSLocalizedStringFromTableInBundle(key, @"LCChatKitString", [NSBundle lcck_bundleForName:@"Other" class:[LCChatKit class]], nil) ```...
## My issue: Extends LCCKConversationViewController causes load bundle to fail ## What I have done:
## Base Info for this issue 发现在聊天页面CPU Usage在90%以上,导致手机发烫。 通过这里的代码已优化好https://github.com/Maru-zhang/ChatKit-OC/commit/18848c4b0e58d17b8d758f8d3940ac0d19e87c5a 只是现在最新代码中并没有见过以上的变动,所以想问下是后面的commit有什么变动吗