- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 swift 编程的新手。所以我试图将滑动手势添加到我的 iOS 应用程序中。但是当我尝试滑动时,它会停止应用程序并说 NSException 被捕获。这是我写的代码。
override func viewDidLoad() {
super.viewDidLoad()
textLabels.append(label0)
textLabels.append(label1)
textLabels.append(label2)
textLabels.append(label3)
textLabels.append(label4)
textLabels.append(label5)
textLabels.append(label6)
textLabels.append(label7)
textLabels.append(label8)
textLabels.append(label9)
textLabels.append(label10)
textLabels.append(label11)
textLabels.append(label12)
textLabels.append(label13)
textLabels.append(label14)
textLabels.append(label15)
setupInitial()
print(textLabels.count)
var request = GADRequest()
request.testDevices = [kGADSimulatorID]
bannerView.adUnitID = "ca-app-pub-8950283126375215/1694851281"
bannerView.rootViewController = self
bannerView.load(request)
createAndLoadInterstitial()
let swipeRight = UISwipeGestureRecognizer(target: self, action: Selector(("gesture:")))
swipeRight.direction = UISwipeGestureRecognizerDirection.right
self.view.addGestureRecognizer(swipeRight)
let swipeDown = UISwipeGestureRecognizer(target: self, action: Selector(("gesture:")))
swipeDown.direction = UISwipeGestureRecognizerDirection.down
self.view.addGestureRecognizer(swipeDown)
//setView(view: hideView, hidden: false)
}
func gesture(gesture: UIGestureRecognizer) {
if let swipeGesture = gesture as? UISwipeGestureRecognizer {
switch swipeGesture.direction {
case UISwipeGestureRecognizerDirection.right:
print("Swiped right")
case UISwipeGestureRecognizerDirection.down:
print("Swiped down")
case UISwipeGestureRecognizerDirection.left:
print("Swiped left")
case UISwipeGestureRecognizerDirection.up:
print("Swiped up")
default:
break
}
}
}
我也尝试像这样将 UIGestureRecognizerDelegate 添加到我的 viewController 类中
class ViewController: UIViewController, UIGestureRecognizerDelegate
但是没有用。我还添加了 UIGestureRecognizer。请帮助我,我真的被困在这里了。我正在使用 Xcode 8 和 OSX El Capitan。提前致谢。
最佳答案
新的 #selector()
已弃用字符串类型的 Selector()
。
将您的操作更新为#selector(gesture(gesture:))
,这样应该可以解决问题
let swipeRight = UISwipeGestureRecognizer(target: self, action: #selector(gesture(gesture:)))
swipeRight.direction = UISwipeGestureRecognizerDirection.right
self.view.addGestureRecognizer(swipeRight)
关于ios - 滑动手势给出 NSException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42446324/
@throw NSException 和 NSException raise 有什么区别?我想知道我应该使用哪一个(有一个合适的用例来使用一个),为什么? 最佳答案 来自 Apple 文档, An i
我有一个基本的登录页面,它采用两个值(用户名和密码),这些详细信息被传递到我的服务器,我在服务器上使用 PHP 解析结果并返回 JSON 数组。 一切正常;我可以正确登录,错误登录时会出现正确的错误警
我在编译代码时收到以下错误。我正在尝试连接到 sqlite 3 数据库,并在将文本输入 UIAlertView 后将其保存到表中,创建一个新列表。非常感谢所有帮助我花了几个小时试图弄清楚为什么会抛出这
我是 swift 编程的新手。所以我试图将滑动手势添加到我的 iOS 应用程序中。但是当我尝试滑动时,它会停止应用程序并说 NSException 被捕获。这是我写的代码。 override func
我开始自学 Swift,我是一个真正的初学者,我正在开发一个计算器应用程序,就像一个入门项目。我一直收到线程错误,它以 NSException 类型的未捕获异常终止。我在几个地方读到这通常是由于 St
我已经通过了 Introduction to Exception Programming Topics for Cocoa .在 Throwing Exceptions 下, 显示了一个异常名称:Fi
我是 Swift 的新手,我正在使用 ObjectMapper 解析我的 JSON,但我希望数据显示在 TableView 中。但是我有一个问题: libc++abi.dylib: terminati
我正在使用mailcore2这都是基于 block 的。通常他们定义这样的操作 SomeMailCoreOp *op = [session getOp]; [op start:^(NSError* e
请帮我解决这个问题我是一个学习者 [Session started at 2011-01-10 14:32:07 +0530.] 2011-01-10 14:32:10.595 balls[963:2
抱歉,恐怕这个问题相当含糊,但我不知道使用正确的术语。也许有人可以编辑它? 我正在尝试弄清楚这个问题是什么 2012-12-23 09:53:36.827 myApp[10768:303] *** -
问题 我正在编写一个 Cocoa 应用程序,我想引发异常,从而使应用程序崩溃。 我的应用程序委托(delegate)中有以下几行: [NSException raise:NSInternalIncon
Swift 应用程序崩溃并给我这个错误。 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException
这个问题在这里已经有了答案: Is it a good practice to subclass from NSException for app-specific exceptions? (1 个回
我在 Swift 应用中使用 Firebase 和 GeoFire 3.0 Cocoapod,用世界各地的标记填充 map 。以下是执行圆形查询以获取 map 上当前显示区域内的标记的代码:
我目前是 Xcode 和 IOS 的新手,我在 Xcode 中打开了一个完成的项目,但是当我尝试运行该项目时,我遇到了这些错误: 2015-12-18 20:05:49.729 Arsene[
我尝试运行我的应用程序,但抛出了异常,在控制台中我得到了这个: 2011-05-05 00:18:50.984 myApp[2906:207] *** Terminating app due to u
我正在使用 Flurry Analytics,它会报告我的应用程序崩溃,效果很好,只是我不知道是哪种方法导致了崩溃。 我正在捕获未捕获的异常,如下所示: { [FlurryAnalytics
我正在调用另一个类的方法,但我不能,并且收到此错误。我搜索了它,但没有找到任何可以解决这个问题的东西。请帮忙。 代码: adres = [adres stringByAppendingString:[
我使用以下方法实现了以下异常处理程序: NSSetUncaughtExceptionHandler(&ExceptionHandler) 处理程序然后使用以下代码调用handleException:
我正在尝试为 iPhone 构建这个小项目,但是当我将其部署到 iOS 模拟器上时,我收到错误“libc++abi.dylib:因未捕获的 NSException 类型异常而终止”。 代码非常简单,如
我是一名优秀的程序员,十分优秀!