-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathProjectFiles.m
executable file
·38 lines (32 loc) · 1.13 KB
/
ProjectFiles.m
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
//
// ProjectFiles.m
// Coding_iOS
//
// Created by Ease on 14/11/13.
// Copyright (c) 2014年 Coding. All rights reserved.
//
#import "ProjectFiles.h"
@implementation ProjectFiles
- (instancetype)init
{
self = [super init];
if (self) {
_propertyArrayMap = [NSDictionary dictionaryWithObjectsAndKeys:
@"ProjectFile", @"list", nil];
_list = [NSMutableArray array];
_isLoading = NO;
}
return self;
}
- (void)setList:(NSMutableArray *)list{
_list = list.mutableCopy;
_folderList = [list filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"type == 0"]]].mutableCopy ?: @[].mutableCopy;
_fileList = [list filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"type != 0"]]].mutableCopy ?: @[].mutableCopy;
}
- (void)addSharedFolder{
ProjectFile *tempF = _list.firstObject;
ProjectFile *sharedF = [ProjectFile sharedFolderInProject:tempF.project_name ofUser:tempF.project_owner_name];
[_list insertObject:sharedF atIndex:0];
[_folderList insertObject:sharedF atIndex:0];
}
@end