GithubHelp home page GithubHelp logo

Comments (6)

johngraham262 avatar johngraham262 commented on August 24, 2024

Hey I'm a little confused with your question. Can you clarify a bit more? startWithSeconds will start the timer that expires in the specified number of seconds.

Do you want to pass in an NSDate in the future, and then your circleCounter object will calculate how many seconds are remaining until that NSDate (and then also start the timer)?

from jwgcirclecounter.

blackyE1 avatar blackyE1 commented on August 24, 2024

Hi,

i want that the user can select the countdown time with a uidatepicker.

from jwgcirclecounter.

johngraham262 avatar johngraham262 commented on August 24, 2024

At the moment, you can only start a circleCounter if you know the number of seconds into the future for when the timer should expire.

But if I understand you correctly, you should be able to do something like this:
The UIDatePicker has an NSDate on it. You can call yourDatePickerObject.date to get it. Then compare the selected date to now to determine how many seconds into the future that is.

NSDate *selectedDate = yourDatePickerObject.date;
NSTimeInterval seconds = [selectedDate timeIntervalSinceNow]; //be careful of negative return values
[circleCounter startWithSeconds:(NSInteger)seconds];

from jwgcirclecounter.

blackyE1 avatar blackyE1 commented on August 24, 2024

Thank you,

now i have this error "Terminating app due to uncaught exception 'JWGInvalidTime', reason: 'circle counter timer length -542'.
The DatePicker is for picking hours and minutes, not for a date.

from jwgcirclecounter.

johngraham262 avatar johngraham262 commented on August 24, 2024

I recommend you read the docs. When you call timeIntervalSinceNow, it'll return a negative number if you passed in an NSDate that is before now. Check that the date you're passing in is later than now to get a positive number.

from jwgcirclecounter.

johngraham262 avatar johngraham262 commented on August 24, 2024

Any luck? I'll resolve for now, but reach out if you have more questions.

from jwgcirclecounter.

Related Issues (5)

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.