3

我现在在一个应用程序上工作,我需要在 tableview 单元格上添加一些标签,当用户点击该标签时,键盘将显示我们如何做到这一点,有人可以告诉我。我搜索了但他们使用通知的每个地方我都不想要那个。

谢谢

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:                       

 (NSIndexPath*)indexPath {
 static NSString *CellIdentifier = @"Cell";
 UITableViewCell *cell = [tableView
 dequeueReusableCellWithIdentifier:CellIdentifier];
  if (cell == nil) {
    cell = [[[UITableViewCell alloc]
             initWithStyle:UITableViewCellStyleValue1
             reuseIdentifier:CellIdentifier]
            autorelease];
  }
 cell.textLabel.text=[Players objectAtIndex:indexPath.row];

 playername=[[UITextField alloc]initWithFrame:CGRectMake(10, 5, 100, 30)];  
 playername.placeholder=@"Player";
 playername.delegate=self;
 playername.keyboardType=UIKeyboardTypeDefault;
 playername.returnKeyType=UIReturnKeyDone;
 [cell.contentView addSubview:playername];


 cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
 return cell;

 }
4

1 回答 1

1

在您的应用程序中不使用 UITextField 或 UITextView 很奇怪

但如果你想要这个,你可以创建一个不可见的 UITextField 或 UITextView 来显示键盘

UITextField *tf = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
[self.view addSubview:tf];
[tf becomeFirstResponder];

因此您可以使用 UITextFieldDelegate 处理输入

于 2012-04-19T06:37:15.330 回答