为我们的项目评估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;
}
}
}