I am new to IOS development. I want to create the view like the shown in Pic.
I also want that when user write in textfield and Keyboard appears TextField scrollup to Keyboard and should be hidden behind Key board.

thanks, Help please
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can not use a
UITableViewControllerbut a standard view controller and implementUITableViewDelegateandUITableViewDataSourceand implement the necessary delegate methods in your controller, likecellForRowAtIndexPath.This will allow you to have a table view and control it like you would with a
UITableViewControllerand have any other interface elements you wish.