菜鸟教程小白 发表于 2022-12-13 04:57:56

c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null


                                            <p><p>我创建了一个简单的 ViewController ,上面有一个表格 View 。然后,我创建了一个 .xib 文件来设计将进入表格的 UITableViewCells。 </p>

<p>无论我如何尝试 <code>GetCell</code> 都找不到 UITableViewCellNib 。我经历了名称/身份和类型转换的所有变体。我对 Xamarin 和 c# 很陌生,所以我可能缺少一些简单的东西。</p>

<p><strong> ViewController :</strong></p>

<pre><code>public partial class ScheduleViewController : BaseViewController&lt;ScheduleViewModel&gt;
{
   
    public ScheduleViewController(NSBundle bundle, UIViewController owner, string extras) : base(&#34;ScheduleViewController&#34;, bundle, owner, extras)
    {
    }

    public override void ViewDidLoad()
    {
      base.ViewDidLoad();
      Dictionary&lt;string, List&lt;string&gt;&gt; itemData = new Dictionary&lt;string, List&lt;string&gt;&gt;()
      {
            {&#34;phones&#34;, new List&lt;string&gt;() {
                &#34;Android&#34;,
                &#34;iOS&#34;,
                &#34;Windows Phone&#34;,
                &#34;Other&#34;,
                &#34;The Thing&#34;
            }},
            {&#34;computers&#34;, new List&lt;string&gt;() {
                &#34;osx&#34;,
                &#34;windows&#34;,
                &#34;linux&#34;
            }}
      };

      UITableView table = new UITableView(View.Bounds);
      table.Source = new ScheduleTableViewSource(itemData);
      table.SeparatorStyle = UITableViewCellSeparatorStyle.None;
      Add(table);
    }
</code></pre>

<p><strong>UITableVIewCell 类:</strong></p>

<pre><code>public partial class WorkCell : UITableViewCell
{
    public static readonly NSString Key = new NSString(&#34;WorkCell&#34;);
    public static readonly UINib Nib;

    static WorkCell()
    {
      Nib = UINib.FromName(&#34;WorkCell&#34;, NSBundle.MainBundle);
    }

    protected WorkCell(IntPtr handle) : base(handle)
    {
      // Note: this .ctor should not contain any initialization logic.
    }
}
</code></pre>

<p><strong>WorkCell .xib 文件</strong></p>

<p> <a href="/image/NJwe0.png" rel="noreferrer noopener nofollow"><img src="/image/NJwe0.png" alt="enter image description here"/></a> </p>

<p> <a href="/image/hkhsu.png" rel="noreferrer noopener nofollow"><img src="/image/hkhsu.png" alt="enter image description here"/></a> </p>

<p><strong>TableViewDataSource:</strong></p>

<pre><code>    public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
    {
      // always null
      UINib nib = UINib.FromName(&#34;WorkCellContainer&#34;, NSBundle.MainBundle);
tableView.RegisterNibForCellReuse(nib, &#34;workItemCell&#34;);
      var cell = (WorkCell)tableView.DequeueReusableCell (&#34;workItemCell&#34;);

      return cell;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不需要在 GetCell 方法中加载 nib。要使用 xib 中的自定义单元格,您只需执行以下操作:</p>

<ul>
<li><p>使用上下文菜单创建 xib(<Add/New File> 选择 <code>iOS</code>,选择 <code>Table View Cell</code>)</p></li>
<li><p>在您的 ViewController 子类中注册 nib 以供单元重用</p></li>
<li><p>设置重用标识符(为简单起见,使用与单元格名称相同的名称即可)</p></li>
<li><p>在出列单元格时使用重用标识符</p></li>
</ul>

<p><strong>注册NIB</strong></p>

<p>在 <code>ViewDidLoad</code> 的 UITableViewController 子类中(例如,在设置 DataSource 之前)添加以下内容:</p>

<pre><code>table.RegisterNibForCellReuse(WorkCell.Nib, WorkCell.Key);
</code></pre>

<p><strong>为单元设置重用标识符</strong></p>

<p> <a href="/image/3hy8A.png" rel="noreferrer noopener nofollow"><img src="/image/3hy8A.png" alt="reuse identifier"/></a> </p>

<p><strong>出列单元格</strong></p>

<pre><code>public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
{
    var cell = tableView.DequeueReusableCell(WorkCell.Key, indexPath) as WorkCell;

    //set the data in work cell here


    return cell;
}
</code></pre>

<p><strong>在模拟器中测试</strong></p>

<p> <a href="/image/gTz4I.png" rel="noreferrer noopener nofollow"><img src="/image/gTz4I.png" alt="test in simulator"/></a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/53509339/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/53509339/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - UINib 的 Xamarin DequeueReusableCell 始终产生 null