我怎样才能实现这样的UiTableWiev?
http://i.stack.imgur.com/8QVb4.jpg
感谢所有给我教程的人。
像fb这样的表也没关系 http://img688.imageshack.us/img688/4162/photocr.jpg
由于
答案 0 :(得分:0)
将UITextField添加到UITableViewCell。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
/* your standard UITableView setup code */
UITextField *myTextField = [[UITextField alloc] initWithFrame: CGRectMake(60, 12.7, 250, 20)];
/* any other textField code you want to add */
[cell addSubview: customTextField];
return cell;
}
在the list的底部,你会发现带有基于文件的持久性的TableView ,它演示了如何执行此操作。