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.
You would implement this using a UITableView with 2 custom cells
And then for instance on
– tableView:didSelectRowAtIndexPath:for the checkbox cells you implementinsertRowsAtIndexPaths:withRowAnimation:to insert your textField cell below the selected checkbox cellHope this helps and gets you on the right track