gpt4 book ai didi

swift - 为什么#selector() 不能快速工作

转载 作者:行者123 更新时间:2023-11-28 06:37:32 24 4
gpt4 key购买 nike

我正在努力学习 Swift。我想快速制作侧边菜单。我会谷歌并找到一些代码的和平。我正在使用 Xcode 7.2 和 swift 版本 2.1.1?

以下行显示错误:-

self.panRecognizer = UIPanGestureRecognizer(target: self, action: #selector(ENSideMenu.handleGesture(_:)))// (Expected , separator)

HandleGesture 方法是:-

internal func handleGesture(gesture: UISwipeGestureRecognizer) {
toggleMenu((self.menuPosition == .Right && gesture.direction == .Left)
|| (self.menuPosition == .Left && gesture.direction == .Right))
}

我该怎么办?

提前致谢。

最佳答案

尝试使用旧语法

self.panRecognizer = UIPanGestureRecognizer(target: self, action: Selector("handleGesture:"))

关于swift - 为什么#selector() 不能快速工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38784816/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com