从按钮放置值时出错

时间:2015-11-02 16:19:35

标签: ios swift uialertcontroller

代码在模拟器iphone6,iphon5和设备iphone 5s上工作得很好,在设备iphone 5c上抛出此错误,不知道为什么,试着深入研究它看谷歌和东西但是没有太多解释错误本身

所以这是错误:

func test()
{
    let newWordPrompt = UIAlertController(title: "test", message: "test", preferredStyle: UIAlertControllerStyle.Alert)
    newWordPrompt.addTextFieldWithConfigurationHandler { (textField) -> Void in
        textField.placeholder = "test"
        textField.delegate = self
        textField.keyboardType = UIKeyboardType.NumberPad

    }
    newWordPrompt.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Default, handler: nil))
    newWordPrompt.addAction(UIAlertAction(title: "OK", style: .Default, handler: { (action) -> Void in
        if let textField = newWordPrompt.textFields?.first
        {
            self.digitsOnlyTextField = textField

        }
        let value = jint(self.digitsOnlyTextField.text!)
        let myvar = myfunc(int: value!)
        javaToOjbcFunc(myfunc, true)
    }))
    presentViewController(newWordPrompt, animated: true, completion: nil)
}

以及负责的代码:

FirefoxProfile profile = (new FirefoxProfileManager()).GetProfile("SeleniumProfile");
driver = new FirefoxDriver(profile);

有人确实知道是什么引发了此错误吗? 已经改变了"本地化本地开发区域"在info.plist中,没有改变任何东西。

0 个答案:

没有答案