JXChatLogMoveActionVC.m 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // JXChatLogMoveActionVC.m
  3. // shiku_im
  4. //
  5. // Created by p on 2019/6/11.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import "JXChatLogMoveActionVC.h"
  9. @interface JXChatLogMoveActionVC ()
  10. @end
  11. @implementation JXChatLogMoveActionVC
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. // Do any additional setup after loading the view.
  15. self.isGotoBack = YES;
  16. self.title = Localized(@"JX_ChatLogMove");
  17. self.heightHeader = JX_SCREEN_TOP;
  18. self.heightFooter = 0;
  19. //self.view.frame = CGRectMake(0, 0, JX_SCREEN_WIDTH, JX_SCREEN_HEIGHT);
  20. [self createHeadAndFoot];
  21. [_wait start:Localized(@"JX_Migrating")];
  22. }
  23. - (void)moveActionFinish {
  24. [self actionQuit];
  25. [JXMyTools showTipView:Localized(@"JX_ChatLogReceivingCompleted")];
  26. }
  27. - (void)actionQuit {
  28. [_wait stop];
  29. [super actionQuit];
  30. }
  31. /*
  32. #pragma mark - Navigation
  33. // In a storyboard-based application, you will often want to do a little preparation before navigation
  34. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  35. // Get the new view controller using [segue destinationViewController].
  36. // Pass the selected object to the new view controller.
  37. }
  38. */
  39. @end