2011-02-09 6 views

答えて

0

は、あなたのUITableViewCellにするUITextFieldを追加します。 the listの下部に

- (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; 
} 

、あなたはこれを行う方法を示して、ファイル・ベースの永続性とテーブルビューがあります。

関連する問題