I want to know how can i create a custom UITableViewCell with three parts in the UITableViewCell like that:

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.
Create a blank XIB with a UITableViewCell and design the cell dropping elements on it. Set arbitrary tags (1,2,3…) on each element so you can retrieve them later.
Another way is to go to the NIB and set this view controller as the file owner and hook the the cell to a ivar of the view controller, like
IBOutlet UITableViewCell *tableViewCell.Now loading this with this instance as the owner automatically hooks the cell to the outlet tableViewCell.