We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorry, I cannot explain the issue better than sharing my code snippet.
Here is my code
let dialog = ZAlertView(title: "Elfelejtett jelszó", message: "Adja meg az email címét", alertType: ZAlertView.AlertType.MultipleChoice) dialog.addTextField("emailField", placeHolder: "E-mail cím") dialog.addButton("Küldés", color: UIColor(rgb: Constants.tabBarColor), titleColor: UIColor.whiteColor(), touchHandler: { (alertView) -> () in alertView.dismiss() PFUser.requestPasswordResetForEmailInBackground(alertView.getTextFieldWithIdentifier("emailField")!.text!, block: { (success, error) -> Void in if let error = error { ParseErrorHandlingController.handleParseError(error) } else { ZAlertView.positiveColor = UIColor(rgb: Constants.tabBarColor) let successDialog = ZAlertView(title: "Információ", message: "Az e-mailt sikeresen elküldtük", alertType: ZAlertView.AlertType.Alert) successDialog.show() } }) }) dialog.addButton("Mégsem", color: UIColor.lightGrayColor(), titleColor: UIColor.whiteColor(), touchHandler: { (alertView) -> () in alertView.dismiss() }) dialog.show()
And here is the issue (somehow the self.oldFrame is nil)
fatal error: unexpectedly found nil while unwrapping an Optional value
The text was updated successfully, but these errors were encountered:
This happens when you run the app on Simulator. There's a hot fix for this in 0.1.3.
Sorry, something went wrong.
No branches or pull requests
Sorry, I cannot explain the issue better than sharing my code snippet.
Here is my code
And here is the issue (somehow the self.oldFrame is nil)
fatal error: unexpectedly found nil while unwrapping an Optional value
The text was updated successfully, but these errors were encountered: