Skip to content

Commit

Permalink
modified type warning
Browse files Browse the repository at this point in the history
  • Loading branch information
helloyako committed Apr 12, 2017
1 parent e77fdbe commit a8f1ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JTNumberScrollAnimatedView/JTNumberScrollAnimatedView.m
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ - (void)createContentForLayer:(CAScrollLayer *)scrollLayer withNumberText:(NSStr
NSMutableArray *textForScroll = [NSMutableArray new];

for(NSUInteger i = 0; i < self.density + 1; ++i){
[textForScroll addObject:[NSString stringWithFormat:@"%ld", (number + i) % 10]];
[textForScroll addObject:[NSString stringWithFormat:@"%lu", (number + i) % 10]];
}

[textForScroll addObject:numberText];
Expand Down

0 comments on commit a8f1ef6

Please sign in to comment.