Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
576 lines (525 loc) · 21.6 KB

File metadata and controls

576 lines (525 loc) · 21.6 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
//
// FileViewController.m
// Coding_iOS
//
// Created by Ease on 14/12/15.
// Copyright (c) 2014年 Coding. All rights reserved.
//
#import "FileViewController.h"
#import "BasicPreviewItem.h"
#import "FileDownloadView.h"
#import "Coding_NetAPIManager.h"
#import "Coding_FileManager.h"
#import "WebContentManager.h"
#import "FunctionTipsManager.h"
#import "EaseToolBar.h"
#import "FileActivitiesViewController.h"
#import "FileVersionsViewController.h"
#import "FileInfoViewController.h"
#import "FileEditViewController.h"
#import "KxMenu.h"
@interface FileViewController () <QLPreviewControllerDataSource, QLPreviewControllerDelegate, UIDocumentInteractionControllerDelegate, UIWebViewDelegate, EaseToolBarDelegate>
@property (strong, nonatomic, readwrite) ProjectFile *curFile;
@property (strong, nonatomic, readwrite) FileVersion *curVersion;
@property (strong, nonatomic) NSURL *fileUrl;
@property (strong, nonatomic) QLPreviewController *previewController;
@property (strong, nonatomic) FileDownloadView *downloadView;
@property (nonatomic, strong) UIDocumentInteractionController *docInteractionController;
@property (strong, nonatomic) UIWebView *contentWebView;
@property (strong, nonatomic) UIActivityIndicatorView *activityIndicator;
@property (nonatomic, strong) EaseToolBar *myToolBar;
@end
@implementation FileViewController
+ (instancetype)vcWithFile:(ProjectFile *)file andVersion:(FileVersion *)version{
FileViewController *vc = [self new];
vc.curFile = file;
vc.curVersion = version;
return vc;
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
self.title = [self titleStr];
if ([self.curFile isEmpty]) {
[self requestFileData];
}else{
[self configContent];
}
}
- (EaseToolBar *)myToolBar{
if (!_myToolBar) {
EaseToolBarItem *item1 = [EaseToolBarItem easeToolBarItemWithTitle:@" 文件动态" image:@"button_file_activity" disableImage:nil];
EaseToolBarItem *item2 = [EaseToolBarItem easeToolBarItemWithTitle:@" 历史版本" image:@"button_file_history" disableImage:nil];
_myToolBar = [EaseToolBar easeToolBarWithItems:@[item1, item2]];
_myToolBar.delegate = self;
[self.view addSubview:_myToolBar];
[_myToolBar mas_makeConstraints:^(MASConstraintMaker *make) {
make.bottom.equalTo(self.view.mas_bottom);
make.size.mas_equalTo(_myToolBar.frame.size);
}];
}
if (_myToolBar) {
FunctionTipsManager *ftM = [FunctionTipsManager shareManager];
if ([ftM needToTip:kFunctionTipStr_File_2V_Activity]) {
EaseToolBarItem *item = [_myToolBar itemOfIndex:0];
[item addTipIcon];
}
if ([ftM needToTip:kFunctionTipStr_File_2V_Version]) {
EaseToolBarItem *item = [_myToolBar itemOfIndex:1];
[item addTipIcon];
}
}
return _myToolBar;
}
- (void)requestFileData{
[self.view beginLoading];
__weak typeof(self) weakSelf = self;
[[Coding_NetAPIManager sharedManager] request_FileDetail:self.curFile andBlock:^(id data, NSError *error) {
[weakSelf.view endLoading];
if (data) {
weakSelf.curFile = data;
[weakSelf configContent];
}else{
if (error.code == 1304) {
[weakSelf.view configBlankPage:EaseBlankPageTypeFileDleted hasData:NO hasError:NO reloadButtonBlock:nil];
}else{
[weakSelf.view configBlankPage:EaseBlankPageTypeView hasData:NO hasError:(error != nil) reloadButtonBlock:^(id sender) {
[weakSelf requestFileData];
}];
}
}
}];
}
- (void)configContent{
self.title = [self titleStr];
[self setupNavigationItem];
NSURL *fileUrl = [self hasBeenDownload];
if (!fileUrl) {
[self showDownloadView];
}else{
self.fileUrl = fileUrl;
[self setupDocumentControllerWithURL:fileUrl];
if ([self.fileType isEqualToString:@"md"]
|| [self.fileType isEqualToString:@"html"]
|| [self.fileType isEqualToString:@"txt"]
|| [self.fileType isEqualToString:@"plist"]){
[self loadWebView:fileUrl];
}else if ([QLPreviewController canPreviewItem:fileUrl]) {
[self showDiskFile:fileUrl];
}else {
[self showDownloadView];
}
}
if (_curVersion) {
_myToolBar.hidden = YES;
}else{
self.myToolBar.hidden = NO;
}
}
- (void)showDiskFile:(NSURL *)fileUrl{
self.downloadView.hidden = self.contentWebView.hidden = YES;
if (!self.previewController) {
QLPreviewController* preview = [[QLPreviewController alloc] init];
preview.dataSource = self;
preview.delegate = self;
[self.view addSubview:preview.view];
[preview.view mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.left.right.equalTo(self.view);
make.bottom.equalTo(self.view).offset(-[self toolBarHeight]);
}];
self.previewController = preview;
}
self.previewController.view.hidden = NO;
}
- (void)loadWebView:(NSURL *)fileUrl{
self.downloadView.hidden = self.previewController.view.hidden = YES;
if (!_contentWebView) {
//用webView显示内容
_contentWebView = [[UIWebView alloc] initWithFrame:self.view.bounds];
_contentWebView.delegate = self;
_contentWebView.backgroundColor = [UIColor clearColor];
_contentWebView.opaque = NO;
_contentWebView.scalesPageToFit = YES;
//webview加载指示
_activityIndicator = [[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:
UIActivityIndicatorViewStyleGray];
_activityIndicator.hidesWhenStopped = YES;
[_activityIndicator setCenter:CGPointMake(CGRectGetWidth(_contentWebView.frame)/2, CGRectGetHeight(_contentWebView.frame)/2)];
[_contentWebView addSubview:_activityIndicator];
[self.view addSubview:_contentWebView];
[_contentWebView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.left.right.equalTo(self.view);
make.bottom.equalTo(self.view).offset(-[self toolBarHeight]);
}];
}
if ([self.fileType isEqualToString:@"md"]){
NSString *mdStr = [NSString stringWithContentsOfURL:fileUrl encoding:NSUTF8StringEncoding error:nil];
[self.activityIndicator startAnimating];
[[Coding_NetAPIManager sharedManager] request_MDHtmlStr_WithMDStr:mdStr inProject:nil andBlock:^(id data, NSError *error) {
NSString *htmlStr;
htmlStr = data? data: @"加载失败";
NSString *contentStr = [WebContentManager markdownPatternedWithContent:htmlStr];
[self.contentWebView loadHTMLString:contentStr baseURL:nil];
}];
}else if ([self.fileType isEqualToString:@"html"]){
NSString* htmlString = [NSString stringWithContentsOfURL:fileUrl encoding:NSUTF8StringEncoding error:nil];
[self.contentWebView loadHTMLString:htmlString baseURL:nil];
}else if ([self.fileType isEqualToString:@"plist"]
|| [self.fileType isEqualToString:@"txt"]){
NSData *fileData = [NSData dataWithContentsOfURL:fileUrl];
[self.contentWebView loadData:fileData MIMEType:@"text/text" textEncodingName:@"UTF-8" baseURL:fileUrl];
}else{
[self.contentWebView loadRequest:[NSURLRequest requestWithURL:fileUrl]];
}
self.contentWebView.hidden = NO;
}
- (void)showDownloadView{
self.contentWebView.hidden = self.previewController.view.hidden = YES;
if (!self.downloadView) {
self.downloadView = [[FileDownloadView alloc] initWithFrame:self.view.bounds];
[self.view addSubview:self.downloadView];
[self.downloadView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.left.right.equalTo(self.view);
make.bottom.equalTo(self.view).offset(-[self toolBarHeight]);
}];
}
self.downloadView.file = self.curFile;
self.downloadView.version = self.curVersion;
[self.downloadView reloadData];
__weak typeof(self) weakSelf = self;
self.downloadView.completionBlock = ^(){
[weakSelf configContent];
};
self.downloadView.otherMethodOpenBlock = ^(){
[weakSelf openByOtherApp];
};
self.downloadView.hidden = NO;
}
- (void)setupDocumentControllerWithURL:(NSURL *)url{
if (self.docInteractionController == nil){
self.docInteractionController = [UIDocumentInteractionController interactionControllerWithURL:url];
}else{
self.docInteractionController.URL = url;
}
[self setupNavigationItem];
}
#pragma mark nav M
- (void)setupNavigationItem{
if (!self.curVersion ||
(self.curVersion && self.fileUrl)) {
[self.navigationItem setRightBarButtonItem:[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"moreBtn_Nav"] style:UIBarButtonItemStylePlain target:self action:@selector(rightNavBtnClicked)] animated:NO];
}else{
[self.navigationItem setRightBarButtonItem:nil animated:NO];
}
}
- (void)rightNavBtnClicked{
__weak typeof(self) weakSelf = self;
if (!_curVersion) {
if ([KxMenu isShowingInView:self.view]) {
[KxMenu dismissMenu:YES];
}else{
[KxMenu setTitleFont:[UIFont systemFontOfSize:14]];
[KxMenu setTintColor:[UIColor whiteColor]];
[KxMenu setLineColor:kColorDDD];
NSMutableArray *menuItems = [@[
[KxMenuItem menuItem:@"共享链接" image:[UIImage imageNamed:@"file_menu_icon_share"] target:self action:@selector(goToShareFileLink)],
[KxMenuItem menuItem:@"文件信息" image:[UIImage imageNamed:@"file_menu_icon_info"] target:self action:@selector(goToFileInfo)],
[KxMenuItem menuItem:@"删除文件" image:[UIImage imageNamed:@"file_menu_icon_delete"] target:self action:@selector(deleteCurFile)],
] mutableCopy];
if ([self fileCanEdit]) {
[menuItems insertObject:[KxMenuItem menuItem:@"编辑文件" image:[UIImage imageNamed:@"file_menu_icon_edit"] target:self action:@selector(goToEditFile)]
atIndex:0];
}else if (self.preview.length > 0 && self.fileUrl){
[menuItems insertObject:[KxMenuItem menuItem:@"保存到相册" image:[UIImage imageNamed:@"file_menu_icon_edit"] target:self action:@selector(saveCurImg)]
atIndex:0];
}
if (self.fileUrl) {
[menuItems addObject:[KxMenuItem menuItem:@"其它应用打开" image:[UIImage imageNamed:@"file_menu_icon_open"] target:self action:@selector(openByOtherApp)]];
}
[menuItems setValue:kColor222 forKey:@"foreColor"];
CGRect senderFrame = CGRectMake(kScreen_Width - (kDevice_Is_iPhone6Plus? 30: 26), 0, 0, 0);
[KxMenu showMenuInView:self.view
fromRect:senderFrame
menuItems:menuItems];
}
}else{
if (self.preview.length > 0) {
UIActionSheet *actionSheet = [UIActionSheet bk_actionSheetCustomWithTitle:nil buttonTitles:@[@"保存到相册", @"用其他应用打开"] destructiveTitle:nil cancelTitle:@"取消" andDidDismissBlock:^(UIActionSheet *sheet, NSInteger index) {
switch (index) {
case 0:
[weakSelf saveCurImg];
break;
case 1:
[weakSelf openByOtherApp];
break;
default:
break;
}
}];
[actionSheet showInView:self.view];
}else{
[self openByOtherApp];
}
}
}
- (void)goToEditFile{
__weak typeof(self) weakSelf = self;
FileEditViewController *vc = [FileEditViewController new];
vc.curFile = _curFile;
vc.completeBlock = ^(){
[weakSelf requestFileData];
if (weakSelf.fileHasChangedBlock) {
weakSelf.fileHasChangedBlock();
}
};
[self.navigationController pushViewController:vc animated:YES];
}
- (void)goToShareFileLink{
__weak typeof(self) weakSelf = self;
UIActionSheet *actionSheet;
if (_curFile.share_url.length > 0) {
actionSheet = [UIActionSheet bk_actionSheetCustomWithTitle:@"该链接适用于所有人,无需登录" buttonTitles:@[@"拷贝链接", @"关闭共享"] destructiveTitle:nil cancelTitle:@"取消" andDidDismissBlock:^(UIActionSheet *sheet, NSInteger index) {
if (index == 0) {
[weakSelf doCopyShareUrl];
}else if (index == 1) {
[weakSelf doCloseShareUrl];
}
}];
}else{
actionSheet = [UIActionSheet bk_actionSheetCustomWithTitle:@"当前未开启共享,请先创建公开链接" buttonTitles:@[@"开启共享并拷贝链接"] destructiveTitle:nil cancelTitle:@"取消" andDidDismissBlock:^(UIActionSheet *sheet, NSInteger index) {
if (index == 0) {
[weakSelf doOpenAndCopyShareUrl];
}
}];
}
[actionSheet showInView:self.view];
}
- (void)doCopyShareUrl{
if (_curFile.share_url.length > 0) {
[[UIPasteboard generalPasteboard] setString:_curFile.share_url];
[NSObject showHudTipStr:@"链接已拷贝到粘贴板"];
}else{
[NSObject showHudTipStr:@"文件还未打开共享"];
}
}
- (void)doOpenAndCopyShareUrl{
__weak typeof(self) weakSelf = self;
[[Coding_NetAPIManager sharedManager] request_OpenShareOfFile:_curFile andBlock:^(id data, NSError *error) {
if (data) {
weakSelf.curFile.share_url = data;
[weakSelf doCopyShareUrl];
}
}];
}
- (void)doCloseShareUrl{
NSString *hashStr = [[_curFile.share_url componentsSeparatedByString:@"/"] lastObject];
__weak typeof(self) weakSelf = self;
[[Coding_NetAPIManager sharedManager] request_CloseShareHash:hashStr andBlock:^(id data, NSError *error) {
if (data) {
weakSelf.curFile.share_url = nil;
[NSObject showHudTipStr:@"共享链接已关闭"];
}
}];
}
- (void)goToFileInfo{
FileInfoViewController *vc = [FileInfoViewController vcWithFile:_curFile];
[self.navigationController pushViewController:vc animated:YES];
}
- (void)deleteCurFile{
UIActionSheet *actionSheet;
NSURL *fileUrl = [_curFile hasBeenDownload];
Coding_DownloadTask *cDownloadTask = [_curFile cDownloadTask];
if (fileUrl) {
actionSheet = [UIActionSheet bk_actionSheetCustomWithTitle:@"只是删除本地文件还是连同服务器文件一起删除?" buttonTitles:@[@"仅删除本地文件"] destructiveTitle:@"一起删除" cancelTitle:@"取消" andDidDismissBlock:^(UIActionSheet *sheet, NSInteger index) {
switch (index) {
case 0:
[self doDeleteCurFile:self.curFile fromDisk:YES];
break;
case 1:
[self doDeleteCurFile:self.curFile fromDisk:NO];
break;
default:
break;
}
}];
}else if (cDownloadTask){
actionSheet = [UIActionSheet bk_actionSheetCustomWithTitle:@"确定将服务器上的该文件删除?" buttonTitles:@[@"只是取消下载"] destructiveTitle:@"确认删除" cancelTitle:@"取消" andDidDismissBlock:^(UIActionSheet *sheet, NSInteger index) {
switch (index) {
case 0:
[self doDeleteCurFile:self.curFile fromDisk:YES];
break;
case 1:
[self doDeleteCurFile:self.curFile fromDisk:NO];
break;
default:
break;
}
}];
}else{
actionSheet = [UIActionSheet bk_actionSheetCustomWithTitle:@"确定将服务器上的该文件删除?" buttonTitles:nil destructiveTitle:@"确认删除" cancelTitle:@"取消" andDidDismissBlock:^(UIActionSheet *sheet, NSInteger index) {
if (index == 0) {
[self doDeleteCurFile:self.curFile fromDisk:NO];
}
}];
}
[actionSheet showInView:self.view];
}
- (void)doDeleteCurFile:(ProjectFile *)file fromDisk:(BOOL)fromDisk{
// 取消当前的下载任务
Coding_DownloadTask *cDownloadTask = [file cDownloadTask];
if (cDownloadTask) {
[Coding_FileManager cancelCDownloadTaskForKey:file.storage_key];
}
// 删除本地文件
NSURL *fileUrl = [file hasBeenDownload];
NSString *filePath = fileUrl.path;
NSFileManager *fm = [NSFileManager defaultManager];
if ([fm fileExistsAtPath:filePath]) {
NSError *fileError;
[fm removeItemAtPath:filePath error:&fileError];
if (fileError) {
[NSObject showError:fileError];
}else if (fromDisk){
[self.navigationController popViewControllerAnimated:YES];
if (self.fileHasBeenDeletedBlock) {
self.fileHasBeenDeletedBlock();
}
}
}
// 删除服务器文件
if (!fromDisk) {
__weak typeof(self) weakSelf = self;
[[Coding_NetAPIManager sharedManager] request_DeleteFiles:@[file.file_id] inProject:self.curFile.project_id andBlock:^(id data, NSError *error) {
if (data) {
[weakSelf.navigationController popViewControllerAnimated:YES];
if (weakSelf.fileHasBeenDeletedBlock) {
weakSelf.fileHasBeenDeletedBlock();
}
}
}];
}
}
- (void)openByOtherApp{
[self.docInteractionController presentOpenInMenuFromBarButtonItem:self.navigationItem.rightBarButtonItem animated:YES];
}
- (void)saveCurImg{
SEL selectorToCall = @selector(imageWasSavedSuccessfully:didFinishSavingWithError:contextInfo:);
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:self.fileUrl]];
if (!image) {
[NSObject showHudTipStr:@"提取图片失败"];
return;
}
UIImageWriteToSavedPhotosAlbum(image, self, selectorToCall, NULL);
}
- (void) imageWasSavedSuccessfully:(UIImage *)paramImage didFinishSavingWithError:(NSError *)paramError contextInfo:(void *)paramContextInfo{
if (paramError == nil){
[NSObject showHudTipStr:@"成功保存到相册"];
} else {
[NSObject showHudTipStr:@"保存失败"];
}
}
#pragma mark - QLPreviewControllerDataSource
- (NSInteger)numberOfPreviewItemsInPreviewController:(QLPreviewController *)controller{
NSInteger num = 0;
if (self.fileUrl) {
num = 1;
}
return num;
}
- (id <QLPreviewItem>)previewController:(QLPreviewController *)controller previewItemAtIndex:(NSInteger)index{
return [BasicPreviewItem itemWithUrl:self.fileUrl];
}
#pragma mark UIWebViewDelegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
DebugLog(@"strLink=[%@]",request.URL.absoluteString);
return YES;
}
- (void)webViewDidStartLoad:(UIWebView *)webView{
[_activityIndicator startAnimating];
}
- (void)webViewDidFinishLoad:(UIWebView *)webView{
[_activityIndicator stopAnimating];
if ([self.fileType isEqualToString:@"plist"]
|| [self.fileType isEqualToString:@"txt"]){
[webView stringByEvaluatingJavaScriptFromString:@"document.body.style.zoom = 3.0;"];
}else if ([self.fileType isEqualToString:@"html"]){
[webView stringByEvaluatingJavaScriptFromString:@"document.body.style.zoom = 2.0;"];
}
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error{
if([error code] == NSURLErrorCancelled)
return;
else{
DebugLog(@"%@", error.description);
[NSObject showError:error];
}
}
#pragma mark EaseToolBarDelegate
- (void)easeToolBar:(EaseToolBar *)toolBar didClickedIndex:(NSInteger)index{
EaseToolBarItem *item = [toolBar itemOfIndex:index];
NSString *tipStr = nil;
if (index == 0) {
FileActivitiesViewController *vc = [FileActivitiesViewController vcWithFile:_curFile];
[self.navigationController pushViewController:vc animated:YES];
tipStr = kFunctionTipStr_File_2V_Activity;
}else if (index == 1){
FileVersionsViewController *vc = [FileVersionsViewController vcWithFile:_curFile];
[self.navigationController pushViewController:vc animated:YES];
tipStr = kFunctionTipStr_File_2V_Version;
}
if ([[FunctionTipsManager shareManager] needToTip:tipStr]) {
[[FunctionTipsManager shareManager] markTiped:tipStr];
[item removeTipIcon];
}
}
#pragma mark Data Value
- (NSURL *)hasBeenDownload{
NSURL *fileUrl;
if (self.curVersion) {
fileUrl = [self.curVersion hasBeenDownload];
}else{
fileUrl = [self.curFile hasBeenDownload];
}
return fileUrl;
}
- (NSString *)fileType{
if (_curVersion) {
return _curVersion.fileType;
}else{
return _curFile.fileType;
}
}
- (NSString *)preview{
if (_curVersion) {
return _curVersion.preview;
}else{
return _curFile.preview;
}
}
- (NSString *)titleStr{
if (_curVersion) {
return _curVersion.remark;
}else{
return _curFile.name;
}
}
- (CGFloat)toolBarHeight{
if (_curVersion) {
return 0;
}else{
return 49.0;
}
}
- (BOOL)fileCanEdit{
NSArray *supportTypeList = @[@"md", @"txt"];
if ([supportTypeList containsObject:_curFile.fileType]) {
return YES;
}else{
return NO;
}
}
@end
Morty Proxy This is a proxified and sanitized view of the page, visit original site.