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