HelperViewController.m 711 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // HelperViewController.m
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/29.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import "XenonSDK.h"
  9. #import "HelperViewController.h"
  10. @interface HelperViewController ()
  11. @end
  12. @implementation HelperViewController
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  15. // Do any additional setup after loading the view.
  16. id qq = XenonSDK.sharedSDK.configuration.fixLinkQQ ?: @"";
  17. id tel = XenonSDK.sharedSDK.configuration.fixLinkTel ?: @"";
  18. self.contentTextView.contentInset = UIEdgeInsetsZero;
  19. self.contentTextView.text = [NSString stringWithFormat:@"工作时间: 9:30~18:30\n\n客服QQ: %@\n\n客服电话: %@", qq, tel, nil];
  20. }
  21. @end