I am trying to generate a UITextField in a view like this. I don’t mind using IB or doing it programmatically.

(source: echofon.com)
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.
UITableViewController subclass, With XIB for interface(check both)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; }- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 2; }- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; cell.selectionStyle = UITableViewCellSelectionStyleNone; } if(indexPath.row == 0) { cell.textLabel.text = @"Username"; UITextField *field = [[[UITextField alloc] initWithFrame: CGRectMake(120, 10, 180, 30)] autorelease]; [cell addSubview:field]; } else if(indexPath.row == 1) { cell.textLabel.text = @"Password"; UITextField *field = [[[UITextField alloc] initWithFrame: CGRectMake(120, 10, 180, 30)] autorelease]; field.secureTextEntry = YES; [cell addSubview:field]; } return cell; }- (NSString *)tableView: (UITableView *)tableView titleForHeaderInSection: (NSInteger)section { return @"Account"; }- (NSString *)tableView: (UITableView *)tableView titleForFooterInSection: (NSInteger)section { return @"If you don't have a twitter account, go to twitter.com to sign up."; }