我已经用一些自定义单元格组成了一个表格 View 。有些自定义单元格包含 UIWebView ,有些包含 UISlider 加上 UITextField ,有些包含 UIButton 。
现在,当我单击 UITableView 底部的 uitableviewcell subview 的文本字段时,我无法让我的表格单元格在键盘上方正确可见。
使用 UITableViewController 代替 UIViewController 对我来说是不可能的。因为我的 UI 结构有些奇怪和动态。简单来说就像
UIView -> UIScrollView with paging -> x number of UITableViews -> y number of UITableViewCell -> z number of UITextFields, UISliders, UIWebViews, UIButtons, UILables, etc.
我也试过下面的代码来使它工作。
- (void)textFieldDidBeginEditingUITextField *)textField
{
UITableViewCell *cell = (UITableViewCell*) [[textField superview] superview];
[table_Question[pageNumber] scrollToRowAtIndexPath:[table_Question[pageNumber] indexPathForCell:cell] atScrollPosition:UITableViewScrollPositionTop animated:YES];
}
但它不起作用
谢谢,
编辑 1:
我已经检查了 textfield、tableviewcell 和 tableview 的引用。所以对象的引用不是问题。
Best Answer-推荐答案 strong>
试试这个代码....
- (void)textFieldDidBeginEditingUITextField *)textField
{
UITableViewCell *cell = (UITableViewCell*) [[textField superview] superview];
NSIndexPath *indexPath = [[table_Question[pageNumber] indexPathForCell:cell];
int totalRows = 0;
if([[table_Question[pageNumber] numberOfSections] > 1)
{
for(int i = 0; i<([indexPath.section] - 1);i++)
{
totalRows += [[table_Question[pageNumber] numberOfRowsInSection:i];
}
}
totalRows += indexPath.row;
int yPosition = totalRows * cell.frame.size.height;
CGPoint offset = CGPointMake(0, yPosition);
[[table_Question[pageNumber] setContentOffsetffset animated:YES];
}
这对你有帮助...
关于ios - 带有 UITextView 滚动问题的 UITableView,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/15680020/
|