when I click the btnLogin in the iPhone the xCode was displayed the error:
Thread 5: EXC_BREAKPOINT (code=1, subcode=0x10025c76c)
this is my code
@IBOutlet weak var abc: UILabel!
...
@IBAction func btnLogin(sender: UIButton) {
var jsonResult = AnyObject?()
let urlAsString = "lifewinner2015.dlinkddns.com/SERVER/user?function=login&username=Shing&password=123456789"
let url = NSURL(string: urlAsString)
let urlSession = NSURLSession.sharedSession()
let jsonQuery = urlSession.dataTaskWithURL(url!, completionHandler: {data, reponse, error -> Void in
if (error != nil) {
print("error")
}
do {
jsonResult = try NSJSONSerialization.JSONObjectWithData(data!, options: .AllowFragments) as! NSDictionary
let jsonAbc: String! = jsonResult!["return"] as! String
dispatch_async(dispatch_get_main_queue(), {
self.abc.text = jsonAbc
})
} catch let err as NSError! {
if (err != nil) {
print("JSON Error")
}
}
})
jsonQuery.resume()
}
run the app on the iPhone (9.2 Version)
click the Login button
Xcode will display the error(Photo 1)
Photo 1:
please help me to fix this error please.
but I am not to add the breakpoint to the line number
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…