- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row==0) {
//Edit the textView in this cell
}
これを行う方法はありますか?どのように?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row==0) {
//Edit the textView in this cell
}
これを行う方法はありますか?どのように?
たとえば、カスタムUITableViewCellがあります。
@property (nonatomic, retain) UITextView* textView;
だから、キーボードを表示するには
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row==0) {
[tableView cellForRowAtIndexPath:indexPath]textView]becomeFirstResponder];
}
}
サブビューとして textview をセル contenview に追加した場合は、これを試すことができます
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
for(int i=0;i<[[cell.contentView subviews] count];i++)
{
if([[[cell.contentView subviews] objectAtIndex:i] isKindOfClass:[UITextView class]])
{
[[[cell.contentView subviews] objectAtIndex:i] becomeFirstResponder];
}
}
}