Where to find a form like control for iPhone [duplicate]
You know how on the iPhone one can go to settings> mail > add account > gmail > fillable form
What is the name of that fillable form control? I want to use it in my app but can't find it in Interface Builder. Or rather what is the approach for putting it together using other components?
Thanks!
It's a UITableView
. Create your own UITableViewCell
subclass with a UITextField
in it and use the cells for the table view.
You might want to look here.
https://github.com/ittybittydude/IBAForms
you can quickly make forms using the built-in form field types or create your own custom fields and the user interfaces used to enter data for them.
hope this helps
精彩评论