As subject asks, what is the easiest way to achieve the below input form?

Is it using UITableView? Or something else? I tinker around with code a little bit and I think I may be doing more work than I have to. I recall a presentation in which the presenter said that if I am doing too much hacking to get a feature, perhaps I am doing it wrong.
I searched the web for several frameworks and they are not sufficient. I tried ELCTextField. I try to use IBAForms which looks really good but the sample code is so confusing, I have no idea on how to use it. If you have any sample code, please share it and I would appreciate it. I also try RoundedUITableView and cannot get that to work.
Links to the frameworks:
1. ELCTextField: http://www.cocoacontrols.com/platforms/ios/controls/elctextfieldcell
2. IBAForms: http://www.cocoacontrols.com/platforms/ios/controls/ibaforms
3. RoundedUITableView: https://github.com/beetlebugorg/RoundedUITableView
PS: When I try to combine RoundedUITableVIew with ELCTextField, everything breaks. It’s heartbreaking…
You can do this with two
UITextFields set within a containerUIViewobject. You will have to set theborderColor,borderWidthandcornerRadius. I’ve created somesample codeillustrating this.Basically we will lay the two text fields adjacent vertically inside the container view. We will set the container view’s
clipsToBoundsproperty toYES. We will assign borders to all the three objects and add a corner radius to the container view to get the effect as a grouped table view.We will also add
rightViewandleftViewproperties of the twoUITextFieldobjects to get the padding effect.