如何用占位符实现UiTableWiev?

时间:2011-02-09 17:03:38

标签: uitableview ios4 placeholder

我怎样才能实现这样的UiTableWiev?

http://i.stack.imgur.com/8QVb4.jpg

感谢所有给我教程的人。

像fb这样的表也没关系 http://img688.imageshack.us/img688/4162/photocr.jpg

由于

1 个答案:

答案 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 ,它演示了如何执行此操作。