DownFileViewController.m 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  1. //
  2. // DownFileViewController.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/8.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "DownFileViewController.h"
  9. #import "NoteBookShareVC.h"
  10. #import "SendInfoGroupVC.h"
  11. #import "DrawerView.h"
  12. #import "TabBarController.h"
  13. #import "MyTDGroupViewController.h"
  14. #import "FavoritesViewController.h"
  15. #import "MyTDTopicViewController.h"
  16. #import <Social/Social.h>
  17. #import "MoveViewController.h"
  18. #import "ShareListVC.h"
  19. @interface DownFileViewController ()<WKNavigationDelegate,WKUIDelegate,NoteBookShareVCDelegate>
  20. //@property (nonatomic, strong) UIImageView *imagview;
  21. //@property (nonatomic, strong) UIView *labelView;
  22. @property (nonatomic, strong) UIView *myFooterView;
  23. @property (nonatomic, strong) TDButton *otherButton;
  24. @property (nonatomic, strong) TDButton *shareButton;
  25. @property (strong, nonatomic) NoteBookShareVC * noteBookShareVC;
  26. @property (nonatomic, strong) WKWebView *webView;
  27. @property (nonatomic, strong) DrawerView *drawerView;
  28. @property(nonatomic,strong) UIDocumentInteractionController *documentInteractionController;
  29. // 分割
  30. @property(nonatomic,strong) UIView *sepView;
  31. @property(nonatomic,strong) NSData *fileData;
  32. @end
  33. @implementation DownFileViewController
  34. - (void)viewDidLoad {
  35. [super viewDidLoad];
  36. [self.view addSubview:self.myFooterView];
  37. [self.myFooterView mas_makeConstraints:^(MASConstraintMaker *make) {
  38. make.left.right.mas_equalTo(self.view);
  39. make.height.mas_offset(50);
  40. if (@available(iOS 11.0, *)) {
  41. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  42. } else {
  43. make.bottom.equalTo(self.view.mas_bottom);
  44. }
  45. }];
  46. [self.view addSubview:self.sepView];
  47. [self.sepView mas_makeConstraints:^(MASConstraintMaker *make) {
  48. make.left.right.equalTo(self.view);
  49. make.bottom.equalTo(self.myFooterView.mas_top);
  50. make.height.mas_equalTo(6);
  51. }];
  52. [self.view layoutIfNeeded];
  53. [self.view addSubview:self.webView];
  54. [self.webView mas_makeConstraints:^(MASConstraintMaker *make) {
  55. make.left.right.mas_equalTo(self.view);
  56. make.top.mas_equalTo(self.myNavigationBar.mas_bottom);
  57. make.bottom.equalTo(self.sepView.mas_top);
  58. }];
  59. self.myNavigationBar.titleLabel.text = self.model.Title;
  60. [[UtilsTools getWindow] addSubview:self.noteBookShareVC.view];
  61. NSString * url = [self.model.Url stringByRemovingPercentEncoding];
  62. if ([url hasSuffix:@".txt"]) {
  63. NSString * body = [NSString stringWithContentsOfURL:[NSURL URLWithString:self.model.Url] encoding:NSUTF8StringEncoding error:nil];
  64. NSString* responseStr = [NSString stringWithFormat:
  65. @"<HTML>"
  66. "<head>"
  67. "<title>Text View</title>"
  68. "</head>"
  69. "<BODY>"
  70. "<pre>"
  71. "%@"
  72. "</pre>"
  73. "</BODY>"
  74. "</HTML>",
  75. body];
  76. [self.webView loadHTMLString:responseStr baseURL:nil];
  77. }else{
  78. [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.model.Url]]];
  79. }
  80. self.fileData = [NSData dataWithContentsOfURL:[NSURL URLWithString:url]];
  81. }
  82. - (void)openFileWithURL:(NSURL *)URL
  83. {
  84. NSLog(@"now open %@",URL);
  85. if (URL) {
  86. // Initialize Document Interaction Controller
  87. self.documentInteractionController = [UIDocumentInteractionController
  88. interactionControllerWithURL:URL];
  89. // Configure Document Interaction Controller
  90. self.documentInteractionController.delegate = self;
  91. // Preview File
  92. [self.documentInteractionController presentPreviewAnimated:YES];
  93. }
  94. }
  95. #pragma mark - button hander
  96. - (void)otherButtonHander{
  97. [self SystermOpenFile];
  98. // [self shareBtClick];
  99. }
  100. #pragma mark - Social 框架
  101. //- (void)share3{
  102. // // 判断服务是否可用
  103. // [SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo];
  104. // if (![SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo]) {
  105. // NSLog(@"设置界面设置自己的账号");
  106. // return;
  107. // }
  108. // // 弹出分享内容输入界面
  109. // SLComposeViewController *cc = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeSinaWeibo];
  110. // [cc setInitialText:@"测试文字"]; // 初始化文字
  111. // [cc addImage:[UIImage imageNamed:@"zhujun"]]; // 配图
  112. // cc.completionHandler = ^(SLComposeViewControllerResult reulst) {
  113. // if (reulst == SLComposeViewControllerResultDone) {
  114. // NSLog(@"用户发送成功");
  115. // } else {
  116. // NSLog(@"用户发送失败");
  117. // }
  118. //
  119. // };
  120. // [self presentViewController:cc animated:YES completion:nil];
  121. // // 额外设置
  122. //}
  123. //- (void)shareBtClick
  124. //{
  125. // NSString *textToShare = @"同岑";
  126. // UIImage *imageToShare = [UIImage imageNamed:@"AppIcon"];
  127. // NSURL *urlToShare = [NSURL URLWithString:self.model.Url];
  128. // // 分享的图片不能为空
  129. // NSArray *activityItems = @[textToShare, imageToShare, urlToShare];
  130. // UIActivityViewController *activityVC = [[UIActivityViewController alloc]initWithActivityItems:activityItems applicationActivities:nil];
  131. // // 排除(UIActivityTypeAirDrop)AirDrop 共享、(UIActivityTypePostToFacebook)Facebook
  132. // activityVC.excludedActivityTypes = @[UIActivityTypePostToFacebook, UIActivityTypeAirDrop];
  133. // [self presentViewController:activityVC animated:YES completion:nil];
  134. // // 通过block接收结果处理
  135. // UIActivityViewControllerCompletionWithItemsHandler completionHandler = ^(UIActivityType __nullable activityType, BOOL completed, NSArray * __nullable returnedItems, NSError * __nullable activityError){
  136. // if (completed) {
  137. //// [self showAlertViewWithMsg:@"恭喜你,分享成功!"];
  138. // }else{
  139. //// [self showAlertViewWithMsg:@"很遗憾,分享失败!"];
  140. // }
  141. // };
  142. // activityVC.completionWithItemsHandler = completionHandler;
  143. //}
  144. #pragma mark - 调用系统其他app 打开文件
  145. - (void)SystermOpenFile{
  146. WS(weakSelf);
  147. NSURL *url = [NSURL URLWithString:self.model.Url];
  148. NSURLRequest *request = [NSURLRequest requestWithURL:url];
  149. AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
  150. NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:^(NSProgress * _Nonnull downloadProgress) {
  151. NSLog(@"下载进度:%.0f%", downloadProgress.fractionCompleted * 100);
  152. } destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
  153. NSString *downloadPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
  154. //打开文件管理器
  155. NSFileManager *fileManager = [NSFileManager defaultManager];
  156. //创建Download目录
  157. [fileManager createDirectoryAtPath:downloadPath withIntermediateDirectories:YES attributes:nil error:nil];
  158. //拼接文件路径
  159. NSString *filePath = [downloadPath stringByAppendingPathComponent:response.suggestedFilename];
  160. //返回文件位置的URL路径
  161. dispatch_async(dispatch_get_main_queue(), ^{
  162. weakSelf.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
  163. [weakSelf.documentInteractionController setDelegate:weakSelf];
  164. [weakSelf.documentInteractionController presentOpenInMenuFromRect:CGRectZero inView:weakSelf.view animated:YES];
  165. });
  166. return [NSURL fileURLWithPath:filePath];
  167. } completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
  168. NSLog(@"下载完成");
  169. }];
  170. [downloadTask resume];
  171. }
  172. #pragma mark - 调用系统 打开文件分享文件
  173. - (void)systermShare{
  174. NSString *shareTitle = @"分享的标题";
  175. UIImage *shareImage = [UIImage imageNamed:@"me"];
  176. NSURL *shareUrl = [NSURL URLWithString:@"https://www.jianshu.com/u/acdcce712303"];
  177. NSArray *activityItems = @[shareTitle,
  178. shareImage,
  179. shareUrl]; // 必须要提供url 才会显示分享标签否则只显示图片
  180. UIActivityViewController *activityVC = [[UIActivityViewController alloc]
  181. initWithActivityItems:activityItems
  182. applicationActivities:nil];
  183. activityVC.excludedActivityTypes = [self excludetypes];
  184. activityVC.completionWithItemsHandler = ^(UIActivityType _Nullable activityType,
  185. BOOL completed,
  186. NSArray * _Nullable returnedItems,
  187. NSError * _Nullable activityError) {
  188. NSLog(@"activityType: %@,\n completed: %d,\n returnedItems:%@,\n activityError:%@",activityType,completed,returnedItems,activityError);
  189. };
  190. [self presentViewController:activityVC animated:YES completion:nil];
  191. }
  192. -(NSArray *)excludetypes{
  193. NSMutableArray *excludeTypesM = [NSMutableArray arrayWithArray:@[//UIActivityTypePostToFacebook,
  194. UIActivityTypePostToTwitter,
  195. UIActivityTypePostToWeibo,
  196. UIActivityTypeMessage,
  197. UIActivityTypeMail,
  198. UIActivityTypePrint,
  199. UIActivityTypeCopyToPasteboard,
  200. UIActivityTypeAssignToContact,
  201. UIActivityTypeSaveToCameraRoll,
  202. UIActivityTypeAddToReadingList,
  203. UIActivityTypePostToFlickr,
  204. UIActivityTypePostToVimeo,
  205. UIActivityTypePostToTencentWeibo,
  206. UIActivityTypeAirDrop,
  207. UIActivityTypeOpenInIBooks]];
  208. if ([[UIDevice currentDevice].systemVersion floatValue] >= 11.0) {
  209. if (@available(iOS 11.0, *)) {
  210. [excludeTypesM addObject:UIActivityTypeMarkupAsPDF];
  211. } else {
  212. // Fallback on earlier versions
  213. }
  214. }
  215. return excludeTypesM;
  216. }
  217. - (void)backButtonAction2:(UIButton *)sender {
  218. [self secondBarButtonItems];
  219. }
  220. - (void)secondBarButtonItems{
  221. [[UtilsTools getWindow] addSubview:self.drawerView];
  222. WS(weakSelf);
  223. self.drawerView.SelectDrawerBlock = ^(NSIndexPath * _Nonnull indexPath) {
  224. if ([weakSelf.navigationController.viewControllers count] > 1) {
  225. [weakSelf.navigationController popToRootViewControllerAnimated:NO];
  226. }
  227. if (indexPath.section == 0) {
  228. [[TabBarController sharedTabBarController] setSelectedIndex:indexPath.row];
  229. }else{
  230. ///@"站内信", @"通知", @"收藏",@"笔记", @"设置"
  231. switch (indexPath.row) {
  232. case 0:
  233. {
  234. [[TabBarController sharedTabBarController] setSelectedIndex:1];
  235. }
  236. break;
  237. case 1:
  238. {
  239. [[TabBarController sharedTabBarController] setSelectedIndex:2];
  240. }
  241. break;
  242. default:
  243. {
  244. [[TabBarController sharedTabBarController] setSelectedIndex:3];
  245. }
  246. break;
  247. }
  248. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  249. [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(indexPath.row)}];
  250. });
  251. }
  252. };
  253. self.drawerView.frame = CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT);
  254. }
  255. - (DrawerView *)drawerView {
  256. if(!_drawerView) {
  257. _drawerView = [[DrawerView alloc] init];
  258. }
  259. return _drawerView;
  260. }
  261. - (TDButton *)otherButton{
  262. if (!_otherButton) {
  263. _otherButton = [[TDButton alloc]init];
  264. [_otherButton setTitle:@"其他应用打开" forState:UIControlStateNormal];
  265. [_otherButton setTitleColor:UIColorHex(666666) forState:UIControlStateNormal];
  266. [_otherButton setImage:IMG(@"更多") forState:UIControlStateNormal];
  267. [_otherButton addTarget:self action:@selector(otherButtonHander) forControlEvents:UIControlEventTouchUpInside];
  268. [[_otherButton titleLabel] setFont:[UIFont systemFontOfSize:15]];
  269. [_otherButton layoutButtonWithEdgeInsetsStyle:GLButtonEdgeInsetsStyleTop imageTitleSpace:5];
  270. }
  271. return _otherButton;
  272. }
  273. - (TDButton *)shareButton{
  274. if (!_shareButton) {
  275. _shareButton = [[TDButton alloc]init];
  276. [_shareButton setTitle:@"转发" forState:UIControlStateNormal];
  277. [_shareButton setTitleColor:UIColorHex(666666) forState:UIControlStateNormal];
  278. [_shareButton setImage:IMG(@"转发") forState:UIControlStateNormal];
  279. [[_shareButton titleLabel] setFont:[UIFont systemFontOfSize:15]];
  280. [_shareButton addTarget:self action:@selector(shareButtonHander) forControlEvents:UIControlEventTouchUpInside];
  281. [_shareButton layoutButtonWithEdgeInsetsStyle:GLButtonEdgeInsetsStyleTop imageTitleSpace:10];
  282. }
  283. return _shareButton;
  284. }
  285. - (UIView *)myFooterView{
  286. if(!_myFooterView){
  287. _myFooterView = [UIView new];
  288. [_myFooterView addSubview:self.otherButton];
  289. [_myFooterView addSubview:self.shareButton];
  290. [self.otherButton mas_makeConstraints:^(MASConstraintMaker *make) {
  291. make.left.equalTo(self.myFooterView).offset(40);
  292. make.centerY.equalTo(self.myFooterView);
  293. make.width.mas_equalTo(120);
  294. make.height.mas_equalTo(50);
  295. }];
  296. [self.shareButton mas_makeConstraints:^(MASConstraintMaker *make) {
  297. make.right.equalTo(self.myFooterView).offset(-20);
  298. make.centerY.equalTo(self.myFooterView);
  299. make.width.mas_equalTo(120);
  300. make.height.mas_equalTo(50);
  301. }];
  302. }
  303. return _myFooterView;
  304. }
  305. - (WKWebView *)webView {
  306. if (!_webView) {
  307. // 进行配置控制器
  308. WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc] init];
  309. // 实例化对象
  310. configuration.userContentController = [WKUserContentController new];
  311. // 调用JS方法
  312. // [configuration.userContentController addScriptMessageHandler:self name:@"uploadPersonImage"];
  313. //window.webkit.messageHandlers.uploadPersonImage.postMessage({body: 'goodsId=1212'}); js调用
  314. // 进行偏好设置
  315. WKPreferences *preferences = [WKPreferences new];
  316. preferences.javaScriptEnabled = YES;
  317. preferences.javaScriptCanOpenWindowsAutomatically = YES;
  318. preferences.minimumFontSize = 40.0;
  319. configuration.preferences = preferences;
  320. _webView = [[WKWebView alloc] init];
  321. // _webView = [[WKWebView alloc] initWithFrame:CGRectMake(0,kNavigationHeight,kGXScreenWidth,kGXScreenHeigh - kNavigationHeight - 71 - self.sepView.height) configuration:configuration];
  322. _webView.navigationDelegate = self;
  323. _webView.opaque = NO;
  324. // _webView.backgroundColor = [UIColor whiteColor];
  325. if (@available(ios 11.0,*)){ _webView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;}
  326. }
  327. return _webView;
  328. }
  329. // 页面开始加载时调用
  330. -(void)webView:(WKWebView *)webView didStartProvisionalNavigation:(WKNavigation *)navigation{
  331. SHOWLOADING
  332. }
  333. // 当内容开始返回时调用
  334. - (void)webView:(WKWebView *)webView didCommitNavigation:(WKNavigation *)navigation{
  335. REMOVESHOW
  336. }
  337. // 页面加载完成之后调用
  338. - (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation{//这里修改导航栏的标题,动态改变
  339. REMOVESHOW
  340. }
  341. // 页面加载失败时调用
  342. - (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(WKNavigation *)navigation{
  343. [webView reload];
  344. }
  345. -(UIView *)sepView {
  346. if (!_sepView) {
  347. _sepView = [UIView new];
  348. _sepView.backgroundColor = kColorFromRGB(0xeeeeee);
  349. }
  350. return _sepView;
  351. }
  352. #pragma mark -转发
  353. - (void)shareButtonHander{
  354. [self.noteBookShareVC initNoteBookShareData];
  355. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  356. }
  357. - (NoteBookShareVC *)noteBookShareVC{
  358. if (_noteBookShareVC == nil) {
  359. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  360. [_noteBookShareVC.view setHidden:YES];
  361. _noteBookShareVC.delegate = self;
  362. }
  363. return _noteBookShareVC;
  364. }
  365. -(void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath{
  366. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  367. if ([typeName isEqualToString:@"发给微信好友"]) {
  368. [self returnToWechatSession];
  369. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  370. [self returnToWechatTimeLine];
  371. }else if ([typeName isEqualToString:@"发到微博"]){
  372. [self returnToSina];
  373. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  374. [self returnToQQ];
  375. }else if ([typeName isEqualToString:@"发到消息"]){
  376. [self returnToMessage];
  377. }else if ([typeName isEqualToString:@"发到小组"]){
  378. [self returnToGroup];
  379. }else if ([typeName isEqualToString:@"发到笔记"]){
  380. [self returnToNote];
  381. }else if ([typeName isEqualToString:@"发到话题"]){
  382. [self returnToTopic];
  383. }else{
  384. }
  385. }
  386. - (void)returnToWechatSession
  387. {
  388. if (self.fileData) {
  389. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatSession];
  390. }else{
  391. SHOWERROR(@"文件下载中");
  392. }
  393. }
  394. - (void)returnToWechatTimeLine
  395. {
  396. if (self.fileData) {
  397. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatTimeLine];
  398. }else{
  399. SHOWERROR(@"文件下载中");
  400. }
  401. }
  402. - (void)returnToSina
  403. {
  404. if (self.fileData) {
  405. [self shareWebPageToPlatformType:UMSocialPlatformType_Sina];
  406. }else{
  407. SHOWERROR(@"文件下载中");
  408. }
  409. }
  410. - (void)returnToQQ
  411. {
  412. if (self.fileData) {
  413. [self shareWebPageToPlatformType:UMSocialPlatformType_QQ];
  414. }else{
  415. SHOWERROR(@"文件下载中");
  416. }
  417. }
  418. - (void)shareWebPageToPlatformType:(UMSocialPlatformType)platformType
  419. {
  420. //创建分享消息对象
  421. UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];
  422. messageObject.title = self.model.Title;
  423. //创建文件内容对象
  424. UMShareFileObject * fileObject = [UMShareFileObject shareObjectWithTitle:self.model.Title descr:@"" thumImage:[UIImage imageNamed:[ZYCTool getFileNameImage:self.model.Url]]];
  425. fileObject.fileData = self.fileData;
  426. fileObject.fileExtension = [self.model.Url pathExtension];
  427. //分享消息对象设置分享内容对象
  428. messageObject.shareObject = fileObject;
  429. //调用分享接口
  430. [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {
  431. if (error) {
  432. SHOWERROR([ZYCTool handerResultData:error]);
  433. NSLog(@"************Share fail with error %@*********",error);
  434. }else{
  435. NSLog(@"response data is %@",data);
  436. }
  437. }];
  438. }
  439. - (void)returnToMessage
  440. {
  441. ShareListVC * vc = [ShareListVC initShareListVC];
  442. FlowAttachmentsModel * fModel = self.model;
  443. if (fModel.SoureTypeId != 301) {
  444. fModel.MinUrl = @"";
  445. }
  446. vc.sendModel = fModel;
  447. vc.isReturn = YES;
  448. [self.navigationController pushViewController:vc animated:YES];
  449. }
  450. - (void)returnToGroup
  451. {
  452. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  453. vc.type = CollectModel_Group;
  454. FlowAttachmentsModel * fModel = self.model;
  455. if (fModel.SoureTypeId != 301) {
  456. fModel.MinUrl = @"";
  457. }
  458. vc.sendModel = fModel;
  459. vc.isReturn = YES;
  460. [self.navigationController pushViewController:vc animated:YES];
  461. }
  462. - (void)returnToNote
  463. {
  464. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  465. vc.type = CollectModel_NoteBook;
  466. FlowAttachmentsModel * fModel = self.model;
  467. if (fModel.SoureTypeId != 301) {
  468. fModel.MinUrl = @"";
  469. }
  470. vc.sendModel = fModel;
  471. vc.isReturn = YES;
  472. [self.navigationController pushViewController:vc animated:YES];
  473. }
  474. - (void)returnToTopic
  475. {
  476. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  477. vc.type = CollectModel_NewTopic;
  478. FlowAttachmentsModel * fModel = self.model;
  479. if (fModel.SoureTypeId != 301) {
  480. fModel.MinUrl = @"";
  481. }
  482. vc.sendModel = fModel;
  483. vc.isReturn = YES;
  484. [self.navigationController pushViewController:vc animated:YES];
  485. }
  486. @end