-
-
Notifications
You must be signed in to change notification settings - Fork 739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attributed strings can be used as picker row titles. #342
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great improvement 👍 almost ready to merge 😉
* @param successAction | ||
* @param indexes is used to establish the initially selected rows; | ||
* @param target must not be empty. It should respond to "onSuccess" actions. | ||
* @param successAction successActin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix this typo 👍
Pickers/ActionSheetStringPicker.m
Outdated
|
||
NSAttributedString *attributeTitle = [self pickerView:pickerView attributedTitleForRow:row forComponent:component]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 great. seems it should works! Please fix typo above and I will happy to merge!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please fix typo, I will issue new minor release now and next that one for major release! 👍
Fix run ActionSheetPickerTests on Xcode and Travis CI
Please delete this request. Created another pull request #403 |
… for Swift example.
… migrated to Swift 4.2. Fixed target warnings in Xcode 10.
…lf retain and depreceated ObjC impelementations.
… pickers in dark modes).
# Conflicts: # .travis.yml # Example Projects/Swift-Example/Swift-Example.xcodeproj/project.pbxproj
# xcode_workspace: ActionSheetPicker-3.0.xcworkspace | ||
# xcode_scheme: ActionSheetPickerTests | ||
# xcode_sdk: iphonesimulator | ||
|
||
notifications: | ||
email: | ||
recipients: | ||
- sky4winder+actionSheetPicker@gmail.com | ||
- jki@jki.lv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧐 Travis is not worked correctly yet. If you want to setup it - please make a list of recipients
@@ -208,13 +208,6 @@ - (BOOL)prefersStatusBarHidden { | |||
return [UIApplication sharedApplication].statusBarHidden; | |||
} | |||
|
|||
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure, that we can delete this check? I added it to fix something (shame of me, didn't put comment there).. But still.
This pull request allows to provide attributed strings (eg text with icon) as picker rows.
Also fixed documentation warnings and accessibility for picker title.