I have an application that has a UIPickerView
. The second I try to open the view in which it is contained, the application crashes with NSUnknownKeyException
.
Here's the log:
2015-08-01 17:43:50.572 Patient Consent Project[1748:47245] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<Patient_Consent_Project.ProcedurePicker 0x7ff381d1dd50> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key picker.'
*** First throw call stack:
(
0 CoreFoundation 0x000000010de51c65 __exceptionPreprocess + 165
1 libobjc.A.dylib 0x000000010f9bcbb7 objc_exception_throw + 45
2 CoreFoundation 0x000000010de518a9 -[NSException raise] + 9
3 Foundation 0x000000010e26fb53 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 259
4 CoreFoundation 0x000000010dd99d50 -[NSArray makeObjectsPerformSelector:] + 224
5 UIKit 0x000000010e9c84eb -[UINib instantiateWithOwner:options:] + 1506
6 UIKit 0x000000010e8206d8 -[UIViewController _loadViewFromNibNamed:bundle:] + 242
7 UIKit 0x000000010e820cc8 -[UIViewController loadView] + 109
8 UIKit 0x000000010e820f39 -[UIViewController loadViewIfRequired] + 75
9 UIKit 0x000000010e8213ce -[UIViewController view] + 27
10 UIKit 0x000000010e73c289 -[UIWindow addRootViewControllerViewIfPossible] + 58
11 UIKit 0x000000010e73c64f -[UIWindow _setHidden:forced:] + 247
12 UIKit 0x000000010e748de1 -[UIWindow makeKeyAndVisible] + 42
13 UIKit 0x000000010e6ec417 -[UIApplication _callInitializationDelegatesForMainScene:transitionContext:] + 2732
14 UIKit 0x000000010e6ef19e -[UIApplication _runWithMainScene:transitionContext:completion:] + 1349
15 UIKit 0x000000010e6ee095 -[UIApplication workspaceDidEndTransaction:] + 179
16 FrontBoardServices 0x00000001114b95e5 __31-[FBSSerialQueue performAsync:]_block_invoke_2 + 21
17 CoreFoundation 0x000000010dd8541c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
18 CoreFoundation 0x000000010dd7b165 __CFRunLoopDoBlocks + 341
19 CoreFoundation 0x000000010dd7af25 __CFRunLoopRun + 2389
20 CoreFoundation 0x000000010dd7a366 CFRunLoopRunSpecific + 470
21 UIKit 0x000000010e6edb02 -[UIApplication _run] + 413
22 UIKit 0x000000010e6f08c0 UIApplicationMain + 1282
23 Patient Consent Project 0x000000010dc3fe97 main + 135
24 libdyld.dylib 0x00000001100f2145 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
Here is the code in my view for the UIPickerView
:
class ProcedurePicker: UIViewController, UIPickerViewDelegate {
var selectedText = "Pick Procedure Here"
var procedures = ["Epidural Steroid Injection", "Selective Nerve Root Injection", "Facet Joint Injection", "Medial Branch Nerve Block", "Sympathetic Nerve Block", "Caudal Epidural Injection", "Intrathecal Opioid Injection", "Epidural Blood Patch", "Radiofrequency Ablation on Medial Branch Nerve", "Spinal Cord Stimulator Trial", "Piriformins Injection", "Tail Bone Injection", "Ganglion Impar Block", "Stellate Ganglion Block", "Discography"]
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func numberOfComponentsInPickerView(pickerView: UIPickerView) -> Int{
return 1
}
func pickerView(pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
return procedures.count
}
func pickerView(pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String! {
return procedures[row]
}
func pickerView(pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int)
{
selectedText = procedures[row]
}
@IBAction func onPressDone(sender: UIButton) {
ProcedureButtonText = selectedText
}
}
I'm very new to Swift and iOS, so can you also please explain what's happening and why this crash is occuring?
Most of the times, it's because you've outlet link in story board, and this outlet exist no more in view controller file. Check if it's the case (with your picker).
For this, open your story board, tap on that particular UI(picker in your case), check if it's connected to some outlet (You can check it as shown in picture). If yes, then remove it using cross sign. Hopefully your error will get resolved. In case you need this outlet then add that method in your view controller file.