繁体   English   中英

Swift Stopwatch App崩溃,不知道我要去哪里

[英]Swift Stopwatch App crashing, don't know where I'm going wrong

我正在尝试为正在参加的编码课程制作秒表应用程序。 在运行代码之前,我没有任何错误,但是一旦运行它,“构建成功”后它就会崩溃。

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

    }

    var timer = NSTimer()

    var count = 0

    func updateTime() {

        count++

        timeLabel.text = "\(count)"

    }

    @IBOutlet weak var timeLabel: UILabel!

    @IBAction func playButton(sender: AnyObject) {

        timer = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: Selector("updateTime"), userInfo: nil, repeats: true)

    }

    @IBAction func pauseButton(sender: AnyObject) {

    }

    @IBAction func resetButton(sender: AnyObject) {

    }



    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}

这是输出控制台:

2015-07-23 12:52:26.877 Stop Watch[7472:467329] *** Terminating app 
due to uncaught exception 'NSUnknownKeyException', reason:    
'[<Stop_Watch.ViewController   0x7ffdf1435b60> setValue:forUndefinedKey:]:
this class is not key value coding-compliant for the key play.'

*** First throw call stack:
(
  0   CoreFoundation       0x000000010a814c65 __exceptionPreprocess + 165
  1   libobjc.A.dylib      0x000000010c37fbb7 objc_exception_throw + 45
  2   CoreFoundation       0x000000010a8148a9 -[NSException raise] + 9
  3   Foundation           0x000000010ac32b53 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 259
  4   CoreFoundation       0x000000010a75cd50 -[NSArray makeObjectsPerformSelector:] + 224
  5   UIKit                0x000000010b38b4eb -[UINib instantiateWithOwner:options:] + 1506
  6   UIKit                0x000000010b1e36d8 -[UIViewController _loadViewFromNibNamed:bundle:] + 242
  7   UIKit                0x000000010b1e3cc8 -[UIViewController loadView] + 109
  8   UIKit                0x000000010b1e3f39 -[UIViewController loadViewIfRequired] + 75
  9   UIKit                0x000000010b1e43ce -[UIViewController view] + 27
  10  UIKit                0x000000010b0ff289 -[UIWindow addRootViewControllerViewIfPossible] + 58
  11  UIKit                0x000000010b0ff64f -[UIWindow _setHidden:forced:] + 247
  12  UIKit                0x000000010b10bde1 -[UIWindow makeKeyAndVisible] + 42
  13  UIKit                0x000000010b0af417 -[UIApplication _callInitializationDelegatesForMainScene:transitionContext:] + 2732
  14  UIKit                0x000000010b0b219e -[UIApplication _runWithMainScene:transitionContext:completion:] + 1349
  15  UIKit                0x000000010b0b1095 -[UIApplication workspaceDidEndTransaction:] + 179
  16  FrontBoardServices   0x000000010de7c5e5 __31-[FBSSerialQueue performAsync:]_block_invoke_2 + 21
  17  CoreFoundation       0x000000010a74841c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
  18  CoreFoundation       0x000000010a73e165 __CFRunLoopDoBlocks + 341
  19  CoreFoundation       0x000000010a73df25 __CFRunLoopRun + 2389
  20  CoreFoundation       0x000000010a73d366 CFRunLoopRunSpecific + 470
  21  UIKit                0x000000010b0b0b02 -[UIApplication _run] + 413
  22  UIKit                0x000000010b0b38c0 UIApplicationMain + 1282
  23  Stop Watch           0x000000010a618fa7 main + 135
  24  libdyld.dylib        0x000000010cab5145 start + 1
  25  ???                  0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb) 

查看控制台日志后,我很确定崩溃是由于缺少插座连接而发生的。

按Cmd + Shift + F并在搜索字段中键入“播放”。 在情节提要文件中查找形式为...: Outlet = "play"的条目。

单击该条目,然后单击play旁边的“ x”按钮将其删除。

这应该可以解决崩溃问题。

每当您看到以下格式的错误时: ... this class is not key value coding-compliant for the key ...您应检查情节提要或xib中是否缺少插座。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM