darshan
darshan

Reputation: 1115

Checkbox with Specify textfield below the checkbox

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.enter image description here

Upvotes: 0

Views: 76

Answers (1)

iTukker
iTukker

Reputation: 2083

You would implement this using a UITableView with 2 custom cells

  1. one for your checkbox and text
  2. one for your textfield

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

Related Questions