Thread:1 信号 SIGAGBRT
Thread:1 Signal SIGAGBRT
为什么我在这段代码中得到一个 Thread:1 信号 SIGAGBRT?我不知道要更改什么来修复错误。应用程序启动,只要我按下按钮,应用程序就会取消并给我一个错误。
import UIKit
class ViewController: UIViewController {
@IBOutlet var textFieldInput: UITextField!
@IBOutlet var laCelsius: UILabel!
@IBOutlet var laFahrenheit: UILabel!
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.
}
@IBAction func btn(sender: UIButton) {
var c_out = 0.0
var f_out = 0.0
var inputValue = 0.0
let textInput = NSString(string: textFieldInput.text!)
inputValue = textInput.doubleValue
c_out = (inputValue-32)*5/9
f_out = inputValue * 1.8 + 32
self.laCelsius.text = NSString(format: "%3.2f" ,c_out) as String
self.laFahrenheit.text = NSString(format: "%3.2f" ,f_out) as String
}
}
这是错误代码:
2016-09-22 14:15:51.669 DegreeCL[19045:1774964] -[DegreeCL.ViewController btnPressed:]: unrecognized selector sent to instance 0x7fa7bb643d40
2016-09-22 14:15:51.674 DegreeCL[19045:1774964] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[DegreeCL.ViewController btnPressed:]: unrecognized selector sent to instance 0x7fa7bb643d40'
*** First throw call stack:
(
0 CoreFoundation 0x000000010de1dd85 __exceptionPreprocess + 165
1 libobjc.A.dylib 0x000000010fbc1deb objc_exception_throw + 48
2 CoreFoundation 0x000000010de26d3d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
3 CoreFoundation 0x000000010dd6ccfa ___forwarding___ + 970
4 CoreFoundation 0x000000010dd6c8a8 _CF_forwarding_prep_0 + 120
5 UIKit 0x000000010e647a8d -[UIApplication sendAction:to:from:forEvent:] + 92
6 UIKit 0x000000010e7bae67 -[UIControl sendAction:to:forEvent:] + 67
7 UIKit 0x000000010e7bb143 -[UIControl _sendActionsForEvents:withEvent:] + 327
8 UIKit 0x000000010e7ba263 -[UIControl touchesEnded:withEvent:] + 601
9 UIKit 0x000000010e6ba99f -[UIWindow _sendTouchesForEvent:] + 835
10 UIKit 0x000000010e6bb6d4 -[UIWindow sendEvent:] + 865
11 UIKit 0x000000010e666dc6 -[UIApplication sendEvent:] + 263
12 UIKit 0x000000010e640553 _UIApplicationHandleEventQueue + 6660
13 CoreFoundation 0x000000010dd43301 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
14 CoreFoundation 0x000000010dd3922c __CFRunLoopDoSources0 + 556
15 CoreFoundation 0x000000010dd386e3 __CFRunLoopRun + 867
16 CoreFoundation 0x000000010dd380f8 CFRunLoopRunSpecific + 488
17 GraphicsServices 0x00000001124b3ad2 GSEventRunModal + 161
18 UIKit 0x000000010e645f09 UIApplicationMain + 171
19 DegreeCL 0x000000010dc38412 main + 114
20 libdyld.dylib 0x000000011068592d start + 1
21 ??? 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
Select 来自界面生成器的按钮,然后来自 utilities
的 select connection inspector
并检查是否应该有额外的连接操作方法,将其删除单击x
,您的问题将得到解决!
根据您的崩溃日志,应该是 btnPressed
!
SIGABRIT - 由于多种原因发送了信号,但在这种情况下,我认为您的内存有问题。
您应该使用 po $arg1
选项打开 All Exeptions
它将识别错误。
关键信息是
[DegreeCL.ViewController btnPressed:]: unrecognized selector sent to instance ...'
这意味着在 Interface Builder 中某处存在与操作的死连接 btnPressed
。删除它。
您可以用⇧⌘F搜索btnPressed
。
为什么我在这段代码中得到一个 Thread:1 信号 SIGAGBRT?我不知道要更改什么来修复错误。应用程序启动,只要我按下按钮,应用程序就会取消并给我一个错误。
import UIKit
class ViewController: UIViewController {
@IBOutlet var textFieldInput: UITextField!
@IBOutlet var laCelsius: UILabel!
@IBOutlet var laFahrenheit: UILabel!
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.
}
@IBAction func btn(sender: UIButton) {
var c_out = 0.0
var f_out = 0.0
var inputValue = 0.0
let textInput = NSString(string: textFieldInput.text!)
inputValue = textInput.doubleValue
c_out = (inputValue-32)*5/9
f_out = inputValue * 1.8 + 32
self.laCelsius.text = NSString(format: "%3.2f" ,c_out) as String
self.laFahrenheit.text = NSString(format: "%3.2f" ,f_out) as String
}
}
这是错误代码:
2016-09-22 14:15:51.669 DegreeCL[19045:1774964] -[DegreeCL.ViewController btnPressed:]: unrecognized selector sent to instance 0x7fa7bb643d40 2016-09-22 14:15:51.674 DegreeCL[19045:1774964] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[DegreeCL.ViewController btnPressed:]: unrecognized selector sent to instance 0x7fa7bb643d40' *** First throw call stack: ( 0 CoreFoundation 0x000000010de1dd85 __exceptionPreprocess + 165 1 libobjc.A.dylib 0x000000010fbc1deb objc_exception_throw + 48 2 CoreFoundation 0x000000010de26d3d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205 3 CoreFoundation 0x000000010dd6ccfa ___forwarding___ + 970 4 CoreFoundation 0x000000010dd6c8a8 _CF_forwarding_prep_0 + 120 5 UIKit 0x000000010e647a8d -[UIApplication sendAction:to:from:forEvent:] + 92 6 UIKit 0x000000010e7bae67 -[UIControl sendAction:to:forEvent:] + 67 7 UIKit 0x000000010e7bb143 -[UIControl _sendActionsForEvents:withEvent:] + 327 8 UIKit 0x000000010e7ba263 -[UIControl touchesEnded:withEvent:] + 601 9 UIKit 0x000000010e6ba99f -[UIWindow _sendTouchesForEvent:] + 835 10 UIKit 0x000000010e6bb6d4 -[UIWindow sendEvent:] + 865 11 UIKit 0x000000010e666dc6 -[UIApplication sendEvent:] + 263 12 UIKit 0x000000010e640553 _UIApplicationHandleEventQueue + 6660 13 CoreFoundation 0x000000010dd43301 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 14 CoreFoundation 0x000000010dd3922c __CFRunLoopDoSources0 + 556 15 CoreFoundation 0x000000010dd386e3 __CFRunLoopRun + 867 16 CoreFoundation 0x000000010dd380f8 CFRunLoopRunSpecific + 488 17 GraphicsServices 0x00000001124b3ad2 GSEventRunModal + 161 18 UIKit 0x000000010e645f09 UIApplicationMain + 171 19 DegreeCL 0x000000010dc38412 main + 114 20 libdyld.dylib 0x000000011068592d start + 1 21 ??? 0x0000000000000001 0x0 + 1 ) libc++abi.dylib: terminating with uncaught exception of type NSException (lldb)
Select 来自界面生成器的按钮,然后来自 utilities
的 select connection inspector
并检查是否应该有额外的连接操作方法,将其删除单击x
,您的问题将得到解决!
根据您的崩溃日志,应该是 btnPressed
!
SIGABRIT - 由于多种原因发送了信号,但在这种情况下,我认为您的内存有问题。
您应该使用 po $arg1
选项打开 All Exeptions
它将识别错误。
关键信息是
[DegreeCL.ViewController btnPressed:]: unrecognized selector sent to instance ...'
这意味着在 Interface Builder 中某处存在与操作的死连接 btnPressed
。删除它。
您可以用⇧⌘F搜索btnPressed
。