Giter Site home page Giter Site logo

Comments (5)

skywinder avatar skywinder commented on August 17, 2024

Hi, I don't understand your question.
Did you saw example project with custom button implementation?

from actionsheetpicker-3.0.

mathiasgithub avatar mathiasgithub commented on August 17, 2024

Thanks for your quick response! Sorry if I wasn't clear. I am basically trying to detect when a user presses cancel/hides the picker. It's working with string pickers, but not for date pickers. It basically never calls the selector.

I'm adding the code below straight into the example:

[datePicker setCancelButton:[[UIBarButtonItem alloc] initWithTitle:@"Not sure" style:UIBarButtonItemStylePlain target:self action:@selector(datePickerCancelled:) ]];

Here's the entire method:

-(IBAction)selectATime:(id)sender {

NSInteger minuteInterval = 5;
//clamp date
NSInteger referenceTimeInterval = (NSInteger)[self.selectedTime timeIntervalSinceReferenceDate];
NSInteger remainingSeconds = referenceTimeInterval % (minuteInterval *60);
NSInteger timeRoundedTo5Minutes = referenceTimeInterval - remainingSeconds;
if(remainingSeconds>((minuteInterval*60)/2)) {/// round up
    timeRoundedTo5Minutes = referenceTimeInterval +((minuteInterval*60)-remainingSeconds);
}

self.selectedTime = [NSDate dateWithTimeIntervalSinceReferenceDate:(NSTimeInterval)timeRoundedTo5Minutes];

ActionSheetDatePicker *datePicker = [[ActionSheetDatePicker alloc] initWithTitle:@"Select a time" datePickerMode:UIDatePickerModeTime selectedDate:self.selectedTime target:self action:@selector(timeWasSelected:element:) origin:sender];

[datePicker setCancelButton:[[UIBarButtonItem alloc] initWithTitle:@"Not sure"  style:UIBarButtonItemStylePlain target:self action:@selector(datePickerCancelled:) ]];

datePicker.minuteInterval = minuteInterval;

[datePicker showActionSheetPicker];

}

from actionsheetpicker-3.0.

skywinder avatar skywinder commented on August 17, 2024

Ok! It really missed feature. Even 2!

  1. There is no way to set cancel action for ActionSheetDatePicker
  2. There is no way to override target-action for custom buttons.

I will fix it soon!

from actionsheetpicker-3.0.

skywinder avatar skywinder commented on August 17, 2024

Ok, I decide to not implement feature 2, because it's not generic and can cause bug in more complicated situations.
Please, use new method to achieve your purpose: (available since v.1.1.8)

ActionSheetDatePicker *datePicker = [[ActionSheetDatePicker alloc] initWithTitle:@"Select a time" 
                                                                      datePickerMode:UIDatePickerModeTime 
                                                                        selectedDate:self.selectedTime 
                                                                              target:self 
                                                                              action:@selector(timeWasSelected:element:) 
                                                                              origin:sender 
                                                                        cancelAction:@selector(datePickerCancelled:)];

from actionsheetpicker-3.0.

skywinder avatar skywinder commented on August 17, 2024

Feel free to reopen issue, if you still have questions.

from actionsheetpicker-3.0.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.