是否有用于在表格视图控制器上编辑字段的 iPhone/iPad 库?
Posted
技术标签:
【中文标题】是否有用于在表格视图控制器上编辑字段的 iPhone/iPad 库?【英文标题】:Is there an iPhone/iPad library for editing fields on a table view controller? 【发布时间】:2010-09-14 21:57:24 【问题描述】:我通常会执行以下操作,但我希望有一个库可以处理这种编辑。使用 Google 找不到太多内容。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
// [..snip..]
if (indexPath.row == 0)
textViewOne = [cell addSubview:[UITextView etc]];
return cell;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
if (indexPath.row == 0)
[textViewOne becomeFirstResponder];
// Move UIView into view since the keyboard appears, etc.
【问题讨论】:
【参考方案1】:目前我只找到了一个:
https://github.com/elc/ELCTextFieldCell【讨论】:
以上是关于是否有用于在表格视图控制器上编辑字段的 iPhone/iPad 库?的主要内容,如果未能解决你的问题,请参考以下文章