Skip to content

Commit 3b69af9

Browse files
committed
实现评审列表
1 parent 9bc333c commit 3b69af9

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

Coding_iOS/Controllers/ReviewCell.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ - (void)initCellWithVolunteerReviewers:(User*)reviewer
7272
self.userName.text = reviewer.name;
7373
if([likeValue isEqual:@100]) {
7474
self.userState.text = @"+1";
75+
[self.reviewIcon setHidden:NO];
76+
self.reviewIcon.image = [UIImage imageNamed:@"PointLikeHead"];
7577
self.userState.textColor = [UIColor colorWithHexString:@"0x3BBD79"];
7678
}
7779

Coding_iOS/Controllers/RootControllers/BaseViewController.m

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#import "BaseViewController.h"
1010
#import "ConversationViewController.h"
11+
#import "MRDetailViewController.h"
1112

1213
#import "Login.h"
1314
#import <RegexKitLite-NoWarning/RegexKitLite.h>
@@ -234,7 +235,14 @@ + (UIViewController *)analyseVCFromLinkStr:(NSString *)linkStr analyseMethod:(An
234235
}
235236
}
236237
if (!analyseVC) {
237-
analyseVC = [PRDetailViewController vcWithPath:path];
238+
if([path rangeOfString:@"qingjoin"].location !=NSNotFound)//_roaldSearchText
239+
{
240+
analyseVC = [PRDetailViewController vcWithPath:path];
241+
}
242+
else
243+
{
244+
analyseVC = [MRDetailViewController vcWithPath:path];
245+
}
238246
}
239247
}
240248
}else if ((matchedCaptures = [linkStr captureComponentsMatchedByRegex:topicRegexStr]).count > 0){

0 commit comments

Comments
 (0)