Hi all
Im quite new to iPhone development, I see many applications using a form UI like
https://i.stack.imgur.com/znEex.png
first i thought it was a standard control from the UIKit, but after some searching it doesn’t seem to be.
Im interested in knowing if theres an easy way to create this kind of label to the left and input field to the right kind of cell?
Im guessing this design is created with Table Views and each input is defined as a UITableViewCell.
I know i can just create a custom UITableViewCell, but i thought that since i see so many applications using this kind of input there must a standard control or an easy way of implementing it?.
There is no simple way than using custom UITableViewCell to create such UI widget.
and for user input you need to add either
UITextVieworUIFieldViewto your custom cell.