How can I show a countdown in HH:mm:ss format from NOW to a desired NSDate that will happen in the future?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to use a timer for ticking the date.
Store a future date, and keep on substracting future date – [nsdate today]…
Calculate the time in seconds and calculate it into Hours, minutes, seconds…
//Make two properties
NSDate *nowDate, *futureDateThis will come handy for you…kindly check the project…