UITextField как подпредставление в UITableView - PullRequest
0 голосов
/ 31 декабря 2010

Как мне добиться чего-то, что мы можем видеть в виде входа в систему приложения Skype?

Это выглядит как таблица View для меня с UILabel и UITextField внутри него как подпредставление.Я никогда не делал ничего подобного, поэтому я хотел бы знать, как я могу это сделать.

1 Ответ

0 голосов
/ 31 декабря 2010

Вы можете сделать это.Проверьте следующий код

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

    UILabel *startDtLbl = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 80, 25)];
    startDtLbl.backgroundColor = [UIColor clearColor];
    startDtLbl.tag = 1;
    [cell.contentView addSubview:startDtLbl];

    UITextField *passwordTF = [[UITextField alloc] initWithFrame:CGRectMake(100, 5, 200, 35)];
    passwordTF.tag = 2;
    [cell.contentView addSubview:passwordTF];
    }
    return cell;
}

Вы можете добавить поля, как указано выше.

...