Skip to content

Commit

Permalink
Merge pull request #518 from skywinder/minor_issue_readme
Browse files Browse the repository at this point in the history
Issue 344 - Fixed typo in ReadMe for Objective C - NSInteger
  • Loading branch information
skywinder authored Oct 26, 2020
2 parents ebdfd69 + b60267c commit afb514d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ We'll focus here on how to use the `ActionSheetStringPicker` since it's most lik
// Done block:
ActionStringDoneBlock done = ^(ActionSheetStringPicker *picker, NSInteger selectedIndex, id selectedValue) {
NSLog(@"Picker: %@", picker);
NSLog(@"Selected Index: %@", selectedIndex);
NSLog(@"Selected Index: %@", @(selectedIndex));
NSLog(@"Selected Value: %@", selectedValue);
};

Expand Down

0 comments on commit afb514d

Please sign in to comment.