Reputation: 1115
I have ten check box in the application. if the user press the checkbox then in the next line there will be UITextfield added.
can any one have suggestion on how to do it more faster because its have lots of condition for checking ?
Please check with the screen shot i have mentioned.
Upvotes: 0
Views: 76
Reputation: 2083
You would implement this using a UITableView with 2 custom cells
And then for instance on – tableView:didSelectRowAtIndexPath:
for the checkbox cells you implement insertRowsAtIndexPaths:withRowAnimation:
to insert your textField cell below the selected checkbox cell
Hope this helps and gets you on the right track
Upvotes: 1