I'm getting an EXC_BREAKPOINT (EXC_ARM_BREAKPOINT, subcode=0xe7ffdefe) error while running my app on a iOS7 device.
The thing is, it runs smoothly on iOS7 simulator.
By using breakpoints, I've found the error occurs in line 6.
required init(coder aDecoder: NSCoder) {
personPicker = ABPeoplePickerNavigationController()
super.init(coder: aDecoder)
personPicker.peoplePickerDelegate = self
}
/*error line*/ @IBAction func BPressed(sender: AnyObject) {
self.presentViewController(personPicker, animated: true, completion: nil)
}
This error is new, and didn't appeared on my device until I've added these lines into the code;
let url = NSURL(string: urlPath)
let request = NSURLRequest(URL: url!)
NSURLConnection.sendAsynchronousRequest(request, queue: NSOperationQueue.mainQueue()) {(response, data, error) in
println(NSString(data: data, encoding: NSUTF8StringEncoding))
}
Also; the debugger points the error to this line:
0x16a7f0: trap
And gives this output in the console:
fatal error: attempt to create an Unmanaged instance from a null pointer
This error causes a black screen on device even though I've changed nothing in storyboard.
Thank you for taking your time.
Edit: This error showed no result in search engines, but I think it may be related to obj-c.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…