在过去几天构建Xamarin iOS Universal故事板应用程序时,这个异常消息真的很困惑。我在设备上调试时收到此异常,同时构建我的自定义UITableViewCell
(BookingItemCellController
,它在xcode storyboard中的UITableViewCell上指定为类),然后是应用程序&调试器崩溃:
NSUnknownKeyException原因:[ setValue:forUndefinedKey:]:此类不是键值 符合编码标准的密钥bookingDateLabel。 (MonoTouch.Foundation.MonoTouchException)
它崩溃的行是var cell..
中的GetCell
行:
public override UITableViewCell GetCell (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath)
{
var cell = tableView.DequeueReusableCell (CellIdentifier, indexPath);
var item = TableItems[indexPath.Row];
..
最令人费解的是,我的表视图加载和项目显示,我可以在模拟器上浏览它们,我只在iOS 7的iPhone 4上调试时收到此错误。
bookingDateLabel
确实存在于由有效出口创建的.designer.cs文件中:
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
MonoTouch.UIKit.UILabel bookingDateLabel { get; set; }
同样,这适用于模拟器,但不适用于设备。怎么会这样? 有什么想法帮派?
提前致谢。
答案 0 :(得分:5)
您将在网上阅读的有关此问题的第一个建议是尝试清理解决方案并重建。我试过了。显然干净不够好。我刚进去并删除了bin
和obj
个文件夹,这就解决了这个问题。
对于其他人来说,撕掉他们的头发。我的表视图现在加载正常。哎呀!!