我有一个包含文本字段的自定义单元格的UItableview。 在表视图中,我有5行,带有自定义单元格。 我想为tableview中加载的文本字段实现附件视图(Next,previous,Done按钮)。请帮忙。
代码:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 5;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"CPMyTableViewCell";
CPMyTableViewCell *cell = (CPMyTableViewCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CPMyTableViewCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.textVw.placeholder = @"text";
return cell;
}
答案 0 :(得分:1)
您可以使用BSKeyboardControls https://github.com/SimonBS/BSKeyboardControls。
通过这个,将控件添加到键盘非常容易。您也可以在项目中找到示例。
另请查看this