AppDelegate.m 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. //
  2. // AppDelegate.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/10/21.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "AppDelegate.h"
  9. #import "TabBarController.h"
  10. #import "WorkFlowTabbarController.h"
  11. #import "WXApi.h"
  12. #import "HKFloatManager.h"
  13. @interface AppDelegate ()<JPUSHRegisterDelegate,WXApiDelegate>
  14. @property (nonatomic, strong) TabBarController *tabBar;
  15. @end
  16. @implementation AppDelegate
  17. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  18. // Override point for customization after application launch.
  19. self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
  20. self.tabBar = [TabBarController sharedTabBarController];
  21. [IQKeyboardManager sharedManager].shouldResignOnTouchOutside = YES;
  22. [[IQKeyboardManager sharedManager] setEnableAutoToolbar:NO];
  23. ///友盟分享
  24. [self checkDraft];
  25. [self configUSharePlatforms];
  26. //初始化环信
  27. [[EaseSDKHelper shareHelper] hyphenateApplication:application appkey:kHuanXinAppKey apnsCertName:kHuanXinApnsName];
  28. // [WXApi registerApp:wxAppKey enableMTA:NO];//不崩溃
  29. [WXApi registerApp:wxAppKey universalLink:@"https://apk.tederen.com"];
  30. [self settingPush: launchOptions];
  31. WS(weakSelf);
  32. if (![UserManager checkStringNull:kToken]){
  33. self.window.rootViewController = weakSelf.tabBar;
  34. [[EMClient sharedClient] logout:YES completion:^(EMError *aError) {
  35. NSData * data = USERDEFAULTSGET(@"USERINFO");
  36. AppUserModel * model = (AppUserModel*) [NSKeyedUnarchiver unarchiveObjectWithData:data];
  37. [[EMClient sharedClient] loginWithUsername:model.ImId password:@"123456" completion:^(NSString *aUsername, EMError *aError) {
  38. EMError *error = aError;
  39. dispatch_async(dispatch_get_main_queue(), ^{
  40. if (!error) {
  41. //设置是否自动登录
  42. [[EMClient sharedClient].options setIsAutoLogin:YES];
  43. weakSelf.window.rootViewController = weakSelf.tabBar;
  44. } else {
  45. weakSelf.window.rootViewController = [StoryboardManager shared].login.instantiateInitialViewController;
  46. }
  47. });
  48. }];
  49. }];
  50. }else{
  51. self.window.rootViewController = [StoryboardManager shared].login.instantiateInitialViewController;
  52. }
  53. [self.window makeKeyAndVisible];
  54. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkDraft) name:CHECKDRAFT object:nil];
  55. [HKFloatManager addFloatVcs:@[@"HKSecondViewController"]];
  56. return YES;
  57. }
  58. - (void)dealloc
  59. {
  60. [[NSNotificationCenter defaultCenter] removeObserver:self];
  61. }
  62. - (void)configUSharePlatforms
  63. {
  64. [[UMSocialGlobal shareInstance] setUniversalLinkDic:@{@(UMSocialPlatformType_WechatSession):@"https://apk.tederen.com",
  65. @(UMSocialPlatformType_WechatTimeLine):@"https://apk.tederen.com",
  66. @(UMSocialPlatformType_QQ):@"https://apk.tederen.com",
  67. @(UMSocialPlatformType_Sina):@"https://apk.tederen.com",
  68. }];
  69. [UMConfigure initWithAppkey:UMengAppKey channel:nil];
  70. /* 设置微信的appKey和appSecret */
  71. [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_WechatSession appKey:wxAppKey appSecret:wxAppSecret redirectURL:@"https://apk.tederen.com"];
  72. [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_WechatTimeLine appKey:wxAppKey appSecret:wxAppSecret redirectURL:@"https://apk.tederen.com"];
  73. /* 设置分享到QQ互联的appID
  74. * U-Share SDK为了兼容大部分平台命名,统一用appKey和appSecret进行参数设置,而QQ平台仅需将appID作为U-Share的appKey参数传进即可。
  75. */
  76. [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_QQ appKey:QQAppKey/*设置QQ平台的appID*/ appSecret:QQAppSecret redirectURL:@"https://apk.tederen.com"];
  77. /* 设置新浪的appKey和appSecret */
  78. [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_Sina appKey:WBAppKey appSecret:WBAppSecret redirectURL:@"https://apk.tederen.com"];
  79. }
  80. //- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
  81. //{
  82. // NSString * str = [url absoluteString];
  83. // if ([str hasPrefix:@"iostedeapp"]) {
  84. // if (![UserManager checkStringNull:kToken]){
  85. // str = [str substringFromIndex:17];
  86. // NSArray *array = [str componentsSeparatedByString:@"&"];
  87. // NSLog(@"%@",array);
  88. // NSDictionary * dict= @{@"Id":array[0],@"type":array[1],@"userId":array[2],@"name":array[3],@"describe":array[4]};
  89. // [self pushVC:dict];
  90. // }else{
  91. // UIWindow *window = [UtilsTools getWindow];
  92. // window.rootViewController = [StoryboardManager shared].login.instantiateInitialViewController;
  93. // [window makeKeyAndVisible];
  94. // }
  95. // return YES;
  96. // }
  97. // return [WXApi handleOpenURL:url delegate:self];
  98. //}
  99. /// 分享回调
  100. - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options
  101. {
  102. NSString * str = [url absoluteString];
  103. if ([str hasPrefix:@"iostedeapp"]) {
  104. if (![UserManager checkStringNull:kToken]){
  105. str = [str substringFromIndex:17];
  106. NSArray *array = [str componentsSeparatedByString:@"&"];
  107. NSLog(@"%@",array);
  108. NSDictionary * dict= @{@"Id":array[0],@"type":array[1],@"userId":array[2],@"name":array[3],@"describe":array[4]};
  109. [self pushVC:dict];
  110. }else{
  111. UIWindow *window = [UtilsTools getWindow];
  112. window.rootViewController = [StoryboardManager shared].login.instantiateInitialViewController;
  113. [window makeKeyAndVisible];
  114. }
  115. return YES;
  116. }
  117. return [WXApi handleOpenURL:url delegate:self];
  118. }
  119. -(void)pushVC:(NSDictionary *)dict
  120. {
  121. UIWindow *window = [UtilsTools getWindow];
  122. window.rootViewController = [TabBarController sharedTabBarController];
  123. [[TabBarController sharedTabBarController] setSelectedIndex:0];
  124. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  125. [[NSNotificationCenter defaultCenter] postNotificationName:SHARERETURNSUCCESS object:nil userInfo:dict];
  126. });
  127. [window makeKeyAndVisible];
  128. }
  129. + (UINavigationController *)getRootController {
  130. return (UINavigationController *)[UIApplication sharedApplication].keyWindow.rootViewController;
  131. }
  132. + (UIViewController *)getTopView {
  133. UINavigationController *rootNavigation = [self getRootController];
  134. return rootNavigation.topViewController;
  135. }
  136. + (instancetype)appdelegate {
  137. return (AppDelegate *)[UIApplication sharedApplication].delegate;
  138. }
  139. - (void)applicationWillResignActive:(UIApplication *)application {
  140. NSLog(@"applicationWillResignActive");
  141. // [[NSNotificationCenter defaultCenter] postNotificationName:NOTEBOOKSAVE object:nil];
  142. }
  143. - (void)applicationDidEnterBackground:(UIApplication *)application {
  144. NSLog(@"applicationDidEnterBackground");
  145. }
  146. - (void)applicationWillEnterForeground:(UIApplication *)application {
  147. // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
  148. }
  149. - (void)applicationDidBecomeActive:(UIApplication *)application {
  150. NSLog(@"applicationDidBecomeActive");
  151. }
  152. - (void)applicationWillTerminate:(UIApplication *)application {
  153. NSLog(@"applicationWillTerminate");
  154. }
  155. #pragma mark - 极光
  156. - (void)settingPush:(NSDictionary *)launchOptions {
  157. JPUSHRegisterEntity * entity = [[JPUSHRegisterEntity alloc] init];
  158. entity.types = JPAuthorizationOptionAlert | JPAuthorizationOptionBadge | JPAuthorizationOptionSound;
  159. [JPUSHService registerForRemoteNotificationConfig:entity delegate:self];
  160. [JPUSHService setupWithOption:launchOptions appKey:kJGAppKey
  161. channel:@"tederen"
  162. apsForProduction:YES // 如果为开发状态,设置为 NO; 如果为生产状态,应改为 YES.
  163. advertisingIdentifier:nil];
  164. [JpushTool setAlias:@"18224073257" completion:^(NSInteger iResCode, NSString *iAlias, NSInteger seq) {
  165. } seq:18224073257];
  166. }
  167. // 此方法是必须要有实现,否则SDK将无法处理应用注册的Token,推送也就不会成功
  168. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
  169. NSLog(@"%@",deviceToken);
  170. [JPUSHService registerDeviceToken:deviceToken];
  171. // [[EaseSDKHelper shareHelper] application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
  172. }
  173. - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
  174. }
  175. #pragma mark - JPush
  176. // 前台界面收到通知
  177. - (void)jpushNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(NSInteger))completionHandler {
  178. // Required
  179. NSDictionary * userInfo = notification.request.content.userInfo;
  180. if([notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
  181. [JPUSHService handleRemoteNotification:userInfo];
  182. }
  183. completionHandler(UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionSound); // 需要执行这个方法,选择是否提醒用户,有Badge、Sound、Alert三种类型可以选择设置
  184. }
  185. // 点击通知消息从后台进入前台 willPresentNotification 接收之后会走这个方法
  186. - (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
  187. // Required
  188. NSDictionary * userInfo = response.notification.request.content.userInfo;
  189. if([response.notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
  190. [JPUSHService handleRemoteNotification:userInfo];
  191. NSString * message = userInfo[@"aps"][@"alert"];
  192. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:message preferredStyle:(UIAlertControllerStyleAlert)];
  193. UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:nil];
  194. [alert addAction:sureAction];
  195. [UIApplication sharedApplication].applicationIconBadgeNumber = 0;
  196. [self.window.rootViewController presentViewController:alert animated:YES completion:nil];
  197. }
  198. completionHandler(); // 系统要求执行这个方法
  199. }
  200. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
  201. // Required, iOS 7 Support
  202. [JPUSHService handleRemoteNotification:userInfo];
  203. NSString * message = userInfo[@"aps"][@"alert"];
  204. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:message preferredStyle:(UIAlertControllerStyleAlert)];
  205. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:nil];
  206. [alert addAction:sureAction];
  207. [UIApplication sharedApplication].applicationIconBadgeNumber = 0;
  208. [self.window.rootViewController presentViewController:alert animated:YES completion:nil];
  209. completionHandler(UIBackgroundFetchResultNewData);
  210. }
  211. //#pragma mark 关闭第三方键盘
  212. //- (BOOL)application:(UIApplication*)application shouldAllowExtensionPointIdentifier:(NSString*)extensionPointIdentifier {
  213. // if([extensionPointIdentifier isEqualToString:UIApplicationKeyboardExtensionPointIdentifier]) {
  214. // return NO;
  215. // }
  216. // return YES;
  217. //}
  218. #pragma mark - 微信登录
  219. - (void)onResp:(BaseResp *)resp{
  220. // =============== 获得的微信登录授权回调 ============
  221. if ([resp isMemberOfClass:[SendAuthResp class]]) {
  222. NSLog(@"******************获得的微信登录授权******************");
  223. SendAuthResp *aresp = (SendAuthResp *)resp;
  224. if (aresp.errCode != 0 ) {
  225. dispatch_async(dispatch_get_main_queue(), ^{
  226. dispatch_async(dispatch_get_main_queue(), ^{
  227. SHOWERROR(@"微信授权失败");
  228. });
  229. });
  230. return;
  231. }
  232. //授权成功获取 OpenId
  233. NSString *code = aresp.code;
  234. [self getWeiXinOpenId:code];
  235. }
  236. }
  237. - (void)getWeiXinOpenId:(NSString *)code{
  238. /*
  239. appid 是 应用唯一标识,在微信开放平台提交应用审核通过后获得
  240. secret 是 应用密钥AppSecret,在微信开放平台提交应用审核通过后获得
  241. code 是 填写第一步获取的code参数
  242. grant_type 是 填authorization_code
  243. */
  244. NSString *url =[NSString stringWithFormat:@"https://api.weixin.qq.com/sns/oauth2/access_token?appid=%@&secret=%@&code=%@&grant_type=authorization_code",wxAppKey,wxAppSecret,code];
  245. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  246. NSURL *zoneUrl = [NSURL URLWithString:url];
  247. NSString *zoneStr = [NSString stringWithContentsOfURL:zoneUrl encoding:NSUTF8StringEncoding error:nil];
  248. NSData *data1 = [zoneStr dataUsingEncoding:NSUTF8StringEncoding];
  249. if (!data1) {
  250. dispatch_async(dispatch_get_main_queue(), ^{
  251. SHOWERROR(@"微信授权失败");
  252. });
  253. return ;
  254. }
  255. // 授权成功,获取token、openID字典
  256. NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data1 options:NSJSONReadingMutableContainers error:nil];
  257. NSLog(@"token、openID字典===%@",dic);
  258. // NSString *access_token = dic[@"access_token"];
  259. // NSString *openid= dic[@"openid"];
  260. if ([dic[@"openid"] length] > 0) {
  261. [[NSNotificationCenter defaultCenter] postNotificationName:WeiChatSuccess object:nil userInfo:dic];
  262. }else{
  263. dispatch_async(dispatch_get_main_queue(), ^{
  264. SHOWERROR(@"微信授权失败");
  265. });
  266. return ;
  267. }
  268. });
  269. }
  270. - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray<id<UIUserActivityRestoring>> * _Nullable))restorationHandler {
  271. if ([userActivity.activityType isEqualToString:NSUserActivityTypeBrowsingWeb]) {
  272. NSURL *webpageURL = userActivity.webpageURL;
  273. NSString * str = [webpageURL absoluteString];
  274. if ([str hasPrefix:@"iossmartrhino"]) {
  275. if (![UserManager checkStringNull:kToken]){
  276. str = [str substringFromIndex:20];
  277. NSArray *array = [str componentsSeparatedByString:@"&"];
  278. NSDictionary * dict= @{@"Id":array[0],@"type":array[1],@"userId":array[2],@"name":array[3],@"describe":array[4]};
  279. [[NSNotificationCenter defaultCenter] postNotificationName:SHARERETURNSUCCESS object:nil userInfo:dict];
  280. UIWindow *window = [UtilsTools getWindow];
  281. window.rootViewController = [TabBarController sharedTabBarController];
  282. [[TabBarController sharedTabBarController] setSelectedIndex:0];
  283. [window makeKeyAndVisible];
  284. }else{
  285. UIWindow *window = [UtilsTools getWindow];
  286. window.rootViewController = [StoryboardManager shared].login.instantiateInitialViewController;
  287. [window makeKeyAndVisible];
  288. }
  289. }
  290. // TODO 根据需求进行处理
  291. }
  292. // TODO 根据需求进行处理
  293. return YES;
  294. }
  295. - (void)checkDraft
  296. {
  297. id data = USERDEFAULTSGET(DRAFT);
  298. if ([data isKindOfClass:[NSDictionary class]]) {
  299. NSLog(@"=======%@",data);
  300. switch ([data[@"Type"] integerValue]) {
  301. case CollectModel_Toipc:
  302. {
  303. [self submitTopic:data];
  304. }
  305. break;
  306. case CollectModel_NoteBook:
  307. {
  308. [self submitNoteBook:data withType:CollectModel_NoteBook];
  309. }
  310. break;
  311. case CollectModel_NewTopic:
  312. {
  313. [self submitNoteBook:data withType:CollectModel_NewTopic];
  314. }
  315. break;
  316. case CollectModel_Notice:
  317. {
  318. [self submitNotice:data];
  319. }
  320. break;
  321. case CollectModel_InterMail:
  322. {
  323. [self submitMail:data];
  324. }
  325. break;
  326. default:
  327. break;
  328. }
  329. }
  330. }
  331. - (void)submitTopic:(NSDictionary *)dict
  332. {
  333. if ([dict[@"GroupId"] integerValue] == 0) {
  334. return;
  335. }
  336. NSMutableDictionary * paraDict = [NSMutableDictionary dictionary];
  337. [paraDict setObject:dict[@"Title"] forKey:@"Title"];
  338. [paraDict setObject:dict[@"UserId"] forKey:@"UserId"];
  339. [paraDict setObject:dict[@"GroupId"] forKey:@"GroupId"];
  340. [paraDict setObject:dict[@"FolderId"] forKey:@"FolderId"];
  341. [paraDict setObject:dict[@"HtmlContent"] forKey:@"HtmlContent"];
  342. [paraDict setObject:dict[@"IsDraft"] forKey:@"IsDraft"];
  343. [paraDict setObject:dict[@"Content"] forKey:@"Content"];
  344. [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Topic_Add) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  345. NSLog(@"%@",responseObject);
  346. NSMutableDictionary * InfoDict = [NSMutableDictionary dictionaryWithDictionary:responseObject[@"Data"]];
  347. NSMutableDictionary * DraftDict = [NSMutableDictionary dictionary];
  348. [DraftDict setObject:dict[@"Type"] forKey:@"Type"];
  349. [DraftDict setObject:InfoDict[@"FolderId"] forKey:@"FolderId"];
  350. [DraftDict setObject:InfoDict[@"GroupId"] forKey:@"GroupId"];
  351. [DraftDict setObject:InfoDict[@"Id"] forKey:@"Id"];
  352. [DraftDict setObject:InfoDict[@"UserId"] forKey:@"UserId"];
  353. [DraftDict setObject:InfoDict[@"UserId"] forKey:@"UserId"];
  354. USERDEFAULTSSET(DraftDict, GROUPTOPICDRAFTINFO);
  355. [[NSUserDefaults standardUserDefaults] removeObjectForKey:DRAFT];
  356. } failure:^(NSError * _Nonnull error) {
  357. SHOWERROR([ZYCTool handerResultData:error])
  358. }];
  359. }
  360. - (void)submitNoteBook:(NSDictionary *)dict withType:(CollectModelType)type
  361. {
  362. NSMutableDictionary * paraDict = [NSMutableDictionary dictionary];
  363. [paraDict setObject:dict[@"Title"] forKey:@"Title"];
  364. [paraDict setObject:dict[@"UserId"] forKey:@"UserId"];
  365. [paraDict setObject:dict[@"FolderId"] forKey:@"FolderId"];
  366. [paraDict setObject:dict[@"IsDraft"] forKey:@"IsDraft"];
  367. [paraDict setObject:dict[@"HtmlContent"] forKey:@"HtmlContent"];
  368. [paraDict setObject:dict[@"IsTopic"] forKey:@"IsTopic"];
  369. [paraDict setObject:dict[@"Content"] forKey:@"Content"];
  370. [[HttpManager sharedHttpManager] PUTUrl:Host(API_CreateNoteBook) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  371. NSLog(@"%@",responseObject);
  372. NSMutableDictionary * InfoDict = [NSMutableDictionary dictionaryWithDictionary:responseObject];
  373. [InfoDict setObject:dict[@"Type"] forKey:@"Type"];
  374. USERDEFAULTSSET(InfoDict, type == CollectModel_NoteBook ? NOTEBOOKDRAFTINFO : TOPICBOOKDRAFTINFO);
  375. [[NSUserDefaults standardUserDefaults] removeObjectForKey:DRAFT];
  376. } failure:^(NSError * _Nonnull error) {
  377. SHOWERROR([ZYCTool handerResultData:error]);
  378. }];
  379. }
  380. - (void)submitNotice:(NSDictionary *)dict
  381. {
  382. NSMutableDictionary * paraDict = [NSMutableDictionary dictionary];
  383. [paraDict setObject:dict[@"Title"] forKey:@"Title"];
  384. [paraDict setObject:dict[@"UserId"] forKey:@"UserId"];
  385. [paraDict setObject:dict[@"NoticeType"] forKey:@"NoticeType"];
  386. [paraDict setObject:dict[@"FolderId"] forKey:@"FolderId"];
  387. [paraDict setObject:dict[@"HtmlContent"] forKey:@"HtmlContent"];
  388. [paraDict setObject:dict[@"TypeValue"] forKey:@"TypeValue"];
  389. [paraDict setObject:dict[@"AddresseeUserMiddles"] forKey:@"AddresseeUserMiddles"];
  390. [paraDict setObject:dict[@"CcUserMiddles"] forKey:@"CcUserMiddles"];
  391. [paraDict setObject:dict[@"Content"] forKey:@"Content"];
  392. [[HttpManager sharedHttpManager] PUTUrl:Host(API_NOTICE_ADD) parameters:paraDict responseStyle:DATA success:^(id _Nonnull responseObject) {
  393. NSMutableDictionary * InfoDict = [NSMutableDictionary dictionaryWithDictionary:responseObject];
  394. [InfoDict setObject:dict[@"Type"] forKey:@"Type"];
  395. USERDEFAULTSSET(InfoDict, NOTICERAFTINFO);
  396. [[NSUserDefaults standardUserDefaults] removeObjectForKey:DRAFT];
  397. } failure:^(NSError * _Nonnull error) {
  398. SHOWERROR([ZYCTool handerResultData:error]);
  399. }];
  400. }
  401. - (void)submitMail:(NSDictionary *)dict
  402. {
  403. NSMutableDictionary * paraDict = [NSMutableDictionary dictionary];
  404. [paraDict setObject:dict[@"Title"] forKey:@"Title"];
  405. [paraDict setObject:dict[@"UserId"] forKey:@"UserId"];
  406. [paraDict setObject:dict[@"FolderId"] forKey:@"FolderId"];
  407. [paraDict setObject:dict[@"HtmlContent"] forKey:@"HtmlContent"];
  408. [paraDict setObject:dict[@"AddresseeUserMiddles"] forKey:@"AddresseeUserMiddles"];
  409. [paraDict setObject:dict[@"CcUserMiddles"] forKey:@"CcUserMiddles"];
  410. [paraDict setObject:dict[@"Content"] forKey:@"Content"];
  411. [paraDict setObject:dict[@"MissiveType"] forKey:@"MissiveType"];///1 正常 2 匿名
  412. [paraDict setObject:dict[@"ParentId"] forKey:@"ParentId"];///回复ID
  413. [paraDict setObject:dict[@"TypeValue"] forKey:@"TypeValue"];
  414. [paraDict setObject:dict[@"MissiveAttributeType"] forKey:@"MissiveAttributeType"];///1 发送 2 草稿
  415. [[HttpManager sharedHttpManager] PUTUrl:Host(API_InterLetterModify) parameters:paraDict responseStyle:DATA success:^(id _Nonnull responseObject) {
  416. NSMutableDictionary * InfoDict = [NSMutableDictionary dictionaryWithDictionary:responseObject];
  417. [InfoDict setObject:dict[@"Type"] forKey:@"Type"];
  418. USERDEFAULTSSET(InfoDict, MAILRAFTINFO);
  419. [[NSUserDefaults standardUserDefaults] removeObjectForKey:DRAFT];
  420. } failure:^(NSError * _Nonnull error) {
  421. SHOWERROR([ZYCTool handerResultData:error]);
  422. }];
  423. }
  424. - (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
  425. // 可以这么写
  426. if (self.allowOrentitaionRotation) {
  427. return UIInterfaceOrientationMaskAllButUpsideDown;
  428. }
  429. return UIInterfaceOrientationMaskPortrait;
  430. }
  431. @end