如何在tableview(iphone)的标签触摸上显示键盘

时间:2012-04-19 06:25:46

标签: iphone ios cocoa-touch label

我现在在一个应用程序上工作我需要在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;

 }

1 个答案:

答案 0 :(得分:1)

你的应用中很奇怪,不使用UITextField或UITextView

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

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

所以你可以使用UITextFieldDelegate

来处理输入