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