আমি একটি UIAlertController
দিয়ে একটি দেখানোর চেষ্টা করছি UITextView
। আমি যখন লাইনটি যুক্ত করব:
//Add text field
alertController.addTextFieldWithConfigurationHandler { (textField) -> Void in
}
আমি একটি Runtime
ত্রুটি পেয়েছি :
মারাত্মক ত্রুটি: একটি alচ্ছিক মান মোড়ক দেওয়ার সময় অপ্রত্যাশিতভাবে শৃঙ্খলা পাওয়া গেল
let alertController: UIAlertController = UIAlertController(title: "Find image", message: "Search for image", preferredStyle: .Alert)
//cancel button
let cancelAction: UIAlertAction = UIAlertAction(title: "Cancel", style: .Cancel) { action -> Void in
//cancel code
}
alertController.addAction(cancelAction)
//Create an optional action
let nextAction: UIAlertAction = UIAlertAction(title: "Search", style: .Default) { action -> Void in
let text = (alertController.textFields?.first as! UITextField).text
println("You entered \(text)")
}
alertController.addAction(nextAction)
//Add text field
alertController.addTextFieldWithConfigurationHandler { (textField) -> Void in
textField.textColor = UIColor.greenColor()
}
//Present the AlertController
presentViewController(alertController, animated: true, completion: nil)
এটি আমার ViewController
মাধ্যমে উপস্থাপিত হয়েছে an এর মাধ্যমে IBAction
।
আমি থেকে কোড ডাউনলোড করেছেন এখানে এবং এটি কাজ করে জরিমানা। আমি আমার কোডটিতে সেই পদ্ধতিটি অনুলিপি করে আটকালাম এবং এটি ভেঙে যায়। শেষ লাইনে স্ব উপস্থিতির কোনও প্রভাব নেই।
UITextField
বরংUITextView
?