- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发我的第一个应用程序。 Xcode 说没有错误或问题,但是当我尝试运行该应用程序时,我在 AppDelegate.swift
中收到一条错误消息,上面写着
Thread 1: Signal Sigabt.
这是我的代码:
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate { //This is where the error happens.
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
}
func applicationWillResignActive(application: UIApplication) {
}
func applicationDidEnterBackground(application: UIApplication) {
}
func applicationWillEnterForeground(application: UIApplication) {
}
func applicationDidBecomeActive(application: UIApplication) {
}
func applicationWillTerminate(application: UIApplication) {
}
}
最佳答案
您应该添加异常断点以获取有关崩溃的更多信息。
步骤
在断点导航器的左下角,单击“添加”按钮。
从菜单中选择添加异常断点。
在出现的配置对话框中,从异常字段弹出菜单中选择您希望停止执行的异常类型。
对于 Break 字段,选择您希望程序停止执行的异常处理过程的阶段。
(可选)添加操作并为您希望的行为配置选项。
完成这些步骤后,构建并运行您的项目 - Xcode 将在崩溃原因代码行停止执行。
关于ios - 线程 1 : Signal Sigabt in AppDelegate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36901391/
我有以下代码,我在其中比较两个字符串但抛出异常。 - (void)calendarMonthView:(TKCalendarMonthView *)monthView didSelectDate:(N
我正在开发我的第一个应用程序。 Xcode 说没有错误或问题,但是当我尝试运行该应用程序时,我在 AppDelegate.swift 中收到一条错误消息,上面写着 Thread 1: Signal S
我是一名优秀的程序员,十分优秀!