File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 ){
You can’t perform that action at this time.
0 commit comments