Skip to content

Commit

Permalink
- Fixed typo in ReadMe for Objective C - NSInteger
Browse files Browse the repository at this point in the history
  • Loading branch information
Noor ul Ain Ali committed Oct 25, 2020
1 parent 11977d8 commit b60267c
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 b60267c

Please sign in to comment.