Skip to content

Commit 6e4e84c

Browse files
committed
。。。
1 parent 8bc4aad commit 6e4e84c

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

Coding_iOS/Coding_iOS-Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</dict>
3737
</array>
3838
<key>CFBundleVersion</key>
39-
<string>4.3.201702221600</string>
39+
<string>4.3.201702221800</string>
4040
<key>ITSAppUsesNonExemptEncryption</key>
4141
<false/>
4242
<key>LSApplicationQueriesSchemes</key>

Coding_iOS/Controllers/ReviewerListController.m

-12
Original file line numberDiff line numberDiff line change
@@ -97,18 +97,6 @@ -(void)selectRightAction:(id)sender {
9797
}
9898

9999
#pragma mark Table M
100-
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
101-
return 20;
102-
}
103-
104-
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
105-
return nil;
106-
}
107-
108-
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
109-
return 1;
110-
}
111-
112100
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
113101
return [self.reviewers count];
114102
}

Coding_iOS/Views/Cell/MRReviewerListCell.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ - (void)imgViewClicked:(UIImageView *)imgView{
136136
return;
137137
}
138138
int imageCount = self.contentView.size.width / 40 - 2;
139-
BOOL isLastV = (index == _reviewerList.count -1) || (index == imageCount -1);
139+
BOOL isLastV = (index == _reviewerList.count) || (index == imageCount -1);
140140
if (isLastV && _lastItemClickedBlock) {
141141
_lastItemClickedBlock();
142142
}

0 commit comments

Comments
 (0)