I am looking to create a user experience that is a basic checklist. But I do not really see that in the xCode controls. Could someone please advise me how to do that?
Thanks!
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.
I’d suggest you customize a UITableView and disable selecting (table_view.allowsSelection = NO)
In your custom table, you’d have custom rows which contain a button (a customized UIButton) that acts as a checklist. You can implement the UI feedback of checking a checkbox via the click event of that UIButton (it would toggle to checked on/off state when clicked) and in your code, you would track which of the rows are checked off.
Hope that is clear, feel free to ask more