I have a button in my view with the UIDatePickerModeCountDownTimer. How do I actually get it to start counting down? Examples would be fantastic.
I have a button in my view with the UIDatePickerModeCountDownTimer. How do I actually
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 can create a datasource for you minute-seconds picker. It has two Components: minute and seconds. You have to implement some methods in UIPickerViewDelegate and UIPickerViewDataSource Protocols.
Apple’s sample code UICatalog.app is for your reference. You can find there is a sample for how to create a customized picker.