Skip to content

Commit 23eaa28

Browse files
committed
任务动态 - 标签更改不正正常显示的 Bug
1 parent dc49248 commit 23eaa28

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+55
-1714
lines changed

Coding_iOS.xcodeproj/project.pbxproj

+48-45
Large diffs are not rendered by default.

Coding_iOS/.DS_Store

0 Bytes
Binary file not shown.

Coding_iOS/Models/ProjectActivity.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#import "Projects.h"
1414
#import "FileComment.h"
1515
#import "ProjectFile.h"
16+
#import "ProjectTag.h"
1617

1718
@class Task;
1819
@class ProjectTopic;
@@ -29,7 +30,7 @@
2930
@property (readwrite, nonatomic, strong) File *file;
3031
@property (readwrite, nonatomic, strong) QcTask *qc_task;
3132
@property (readwrite, nonatomic, strong) Depot *depot, *source_depot;
32-
@property (readwrite, nonatomic, strong) NSMutableArray *commits;
33+
@property (readwrite, nonatomic, strong) NSMutableArray *commits, *labels;
3334
@property (readwrite, nonatomic, strong) NSDictionary *propertyArrayMap;
3435
@property (readwrite, nonatomic, strong) ProjectLineNoteActivity *line_note;
3536
@property (strong, nonatomic) Commit *commit;

Coding_iOS/Models/ProjectActivity.m

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ - (instancetype)init
1515
{
1616
self = [super init];
1717
if (self) {
18-
_propertyArrayMap = [NSDictionary dictionaryWithObjectsAndKeys:
19-
@"Commit", @"commits", nil];
18+
_propertyArrayMap = @{@"commits": @"Commit",
19+
@"labels": @"ProjectTag",
20+
};
2021
_actionMediaItems = [[NSMutableArray alloc] init];
2122
_contentMediaItems = [[NSMutableArray alloc] init];
2223
}

Coding_iOS/Vendor/UMSocial_Sdk_4.2.3_Extra/SinaSSO/UMSocialSinaSSOHandler.h

-25
This file was deleted.

Coding_iOS/Vendor/UMSocial_Sdk_4.2.3_Extra/SinaSSO/WBHttpRequest+WeiboShare.h

-93
This file was deleted.

Coding_iOS/Vendor/UMSocial_Sdk_4.2.3_Extra/SinaSSO/WBHttpRequest+WeiboToken.h

-30
This file was deleted.

0 commit comments

Comments
 (0)