Skip to content

Commit

Permalink
fix error ,because of http://i.imgur.com/8nnKurC.png
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenYilong committed Aug 8, 2015
1 parent 88bb959 commit 1e383ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ - (void)judgeMoreButtonShowWhenDefaultRowsCount:(NSUInteger)defaultRowsCount {

[self.cellsCountArrayPerRowInSections enumerateObjectsUsingBlock:^(id __nonnull cellsCountArrayPerRow, NSUInteger idx, BOOL * __nonnull stop) {
NSUInteger __block sum = 0;
[cellsCountArrayPerRow enumerateObjectsUsingBlock:^(NSNumber __nonnull *cellsCount, NSUInteger cellsCountArrayPerRowIdx, BOOL * __nonnull stop) {
[cellsCountArrayPerRow enumerateObjectsUsingBlock:^(NSNumber * __nonnull cellsCount, NSUInteger cellsCountArrayPerRowIdx, BOOL * __nonnull stop) {
if (cellsCountArrayPerRowIdx < defaultRowsCount) {
sum += [cellsCount integerValue];
} else {
Expand Down

0 comments on commit 1e383ca

Please sign in to comment.