我目前正在使用Xamarin通过Visual Studio进行一些跨平台的移动开发(所以在C#中)并即将启动iOS部分。我之前从未做过iOS开发,并且认为我可以让自己熟悉他们的"Hello, iOS" Tutorials.不幸的是,事情进展并不顺利。我经常从TouchUpInside操作中获取NSInvalidArgumentExceptions:
Foundation.MonoTouchException: Objective-C exception thrown.
Name: NSInvalidArgumentException Reason:
-[ViewController TranslateButton_TouchUpInside:]:
unrecognized selector sent to instance 0x7b6200d0
我偶尔可以通过重新制作按钮来修复它,但之后它几乎完全破坏了。实际错误本身发生在我的Main.cs文件中:
using UIKit;
namespace CheckinIOS
{
public class Application
{
static void Main(string[] args)
{
UIApplication.Main(args, null, "AppDelegate"); //this line is where it breaks
}
}
}
如果有任何帮助,我正在尝试部署到运行iOS 9.3的iPhone 5S模拟器(但它也会在iPhone 6模拟器上中断)。如果有必要,我还可以发布更多代码,但是我从Xamarin的教程中复制了所有C#,并为Main.storyboard做了同样的事情。
我花了一段时间寻找与我有同样问题的人,但他们的解决方案要么不起作用,要么因为略有不同的原因而得到错误。任何帮助表示赞赏。
编辑:以下是我对TranslateButton_TouchUpInside的实现:
TranslateButton.TouchUpInside += (object sender, EventArgs e) =>
{
// Convert the phone number with text to a number
// using PhoneTranslator.cs
translatedNumber = PhoneTranslator.ToNumber(PhoneNumberText.Text);
// Dismiss the keyboard if text field was tapped
PhoneNumberText.ResignFirstResponder();
if (translatedNumber == "")
{
CallButton.SetTitle("Call", UIControlState.Normal);
CallButton.Enabled = false;
}
else
{
CallButton.SetTitle("Call " + translatedNumber, UIControlState.Normal);
CallButton.Enabled = true;
}
};
答案 0 :(得分:4)
iOS运行时正在查找ViewController类中名为(在Obj-C land中)TranslateButton_TouchUpInside:
的方法。但是没有方法使用该名称导出到Obj-C。第一个猜测是您在故事板中的按钮中添加了一个事件,该事件可能具有该名称,但是您删除了该方法或从未实现过该方法。
尝试在iOS Designer中打开故事板,并在画布上选择按钮时从Properties-> Events选项卡中删除任何事件。此外,我假设在画布上选中按钮时,按钮在“属性 - >”窗口小部件窗格中的名称为TranslateButton
。
在Xamarin iOS中,有几种方法可以将事件附加到控件。一种,也是首选的方法是在iOS Designer中为控件创建一个事件。如果这样做,部分方法存根将位于.designer.cs文件中,并带有Export属性,该属性将方法名称导出到Obj-C运行时。然后,您需要在ViewController的主.cs文件中使用相同的签名(不包含导出属性)来实现此方法。在Obj-C land中称为action
。
另一种方法是按照代码段中的说明进行操作。在这种情况下,您只需要在Properties-> Widget窗格中为控件指定一个名称,然后您可以在代码中使用该名称来订阅TouchUpInside事件。在Obj-C land中称为outlet
。
我的猜测是你做了两个但没有在ViewController中实现TranslateButton_TouchUpInside:
方法。请注意,这是在向控件添加事件时在Export
文件中创建的方法存根的.designer.cs
属性中使用的Obj-C名称。
但是很难说没有看到故事板以及主ViewController.cs
文件和ViewController.designer.cs
文件