ios - Monotouch/Xamarin 更改 iPad 应用程序的表格行高
<p><p>我无法弄清楚如何在我的 <code>Xamarin</code> iPad 应用程序中更改表的 <code>rowHeight</code>。以前我在 iPhone 应用程序上工作过,调整行的大小就像在 <code>TableSource</code> 类中调用以下内容一样简单:</p>
<pre><code>public override float GetHeightForRow (UITableView tableView, NSIndexPath indexPath)
{
return 95f;
}
</code></pre>
<p>但是,我发现 iPad 应用程序中没有调用它。我应该调用另一种方法吗,还是我完全错了?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>看起来您通过覆盖 GetHeightForRow 正确地做到了这一点,但如果它没有改变它,我建议检查 Controller 上的 ViewDidLoad 方法,以确保它将 tableview 源设置为您的自定义 tableSource 类。 </p>
<p>例如在<code>ViewDidLoad</code>中:</p>
<pre><code>_tableview.Source = new TableSource();
</code></pre></p>
<p style="font-size: 20px;">关于ios - Monotouch/Xamarin 更改 iPad 应用程序的表格行高,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25004969/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25004969/
</a>
</p>
页:
[1]