Monotouch自定义UITableViewCell键值编码错误

时间:2012-10-01 12:36:20

标签: ios uitableview xamarin.ios monodevelop nib

为我们的项目评估Monotouch并收到此错误:

  

MonoTouch.Foundation.MonoTouchException:抛出Objective-C异常。名称:NSUnknownKeyException原因:[setValue:forUndefinedKey:]:此类不是密钥labelJobNo的密码值编码。

当我将标签添加到自定义UITableViewCell xib并使用ctrl-drag方法链接时会发生这种情况。

如果我只是添加标签并且不链接它,它可以正常工作。知道怎么解决吗?

这就是JobListCell.designer.cs的外观:

    [Register ("JobListCell")]
partial class JobListCell
{
    [Outlet]
    MonoTouch.UIKit.UILabel labelJobNo { get; set; }

    void ReleaseDesignerOutlets ()
    {
        if (labelJobNo != null) {
            labelJobNo.Dispose ();
            labelJobNo = null;
        }
    }
}

0 个答案:

没有答案