I work on one application now I need some label on tableview cell and when user tap on that label then keyboard will show how we do that can some one tell me.I searched but every where they use notification i dont want that.
thanks
-(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;
}
it’s strange in your app that do not use a UITextField or UITextView
but if you want this you may create a invisible UITextField or UITextView to show the keyboard
so you can handle the input use UITextFieldDelegate