Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain Boulay committed Nov 5, 2014
1 parent ff71d26 commit f7f871c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Demo/APParallaxHeaderDemo/MasterViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];

cell.textLabel.text = [NSString stringWithFormat:@"Row %i", indexPath.row+1];
cell.textLabel.text = [NSString stringWithFormat:@"Row %li", indexPath.row+1];
return cell;
}

Expand Down

0 comments on commit f7f871c

Please sign in to comment.