add clear chat history button on homepage in wechat

1.Tweak.xm

%new
- (void)clickLeftItem:(UIButton *)button {
  [UIAlertView showWithTitle:@"clear"
                       message:@"are you sure to clear chat list?"
             cancelButtonTitle:@"OK"
             otherButtonTitles:@[@"CANCEL"]
                      tapBlock:^(UIAlertView *alertView, NSInteger buttonIndex) {
      if (buttonIndex == [alertView cancelButtonIndex]) {
          NSLog(@"ok");
          UIViewController *viewController = [objc_getClass("SettingGeneralViewController") new];
          objc_msgSend(viewController,NSSelectorFromString(@"clearLocalData"));
      } else if ([[alertView buttonTitleAtIndex:buttonIndex] isEqualToString:@"CANCEL"]) {
          NSLog(@"cancel");
      }
  }];
}

%end

if want to know how to add left bar button ,please check the before blog.

2.effect

clear chat history

after click ok button, the chat history will be cleared.

3. Postscript

any problem can comment below, I will response you.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容