• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - View 已绘制但未检测到手势识别器

[复制链接]
菜鸟教程小白 发表于 2022-12-11 19:42:46 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个 UIScrollView,它有一个 UIView 作为 subview ,作为返回,它包含我所有的 FooView,这是一个 UIView 也是如此。这些 FooView 中的每一个都有一个手势识别器。在我的 ScrollView 中,第一个 FooView 的手势检测得很好(意味着选择器被正确触发),但所有后续 FooView 都不会触发该手势.

这个问题的答案Subview Gesture Recognizer not being called我假设解释了我面临的问题。引用:“[...] 问题在于带有手势识别器的 subview 位于父 View 的框架之外。这意味着即使正在绘制 View ,也没有检测到手势”。

我了解手头的问题,但不知道如何解决。

顺便说一句:如果我将 FooView 直接添加到 ScrollView ,而不是将它们添加到 contentView,它会完美运行。但是,对于我的用例,这不是一个选项,因为我使用的是自动布局,否则约束会被搞砸。

附上你会发现我的 MWE 在那里你可以看到点击第一个 View 将打印出“Tapped”,但其他 View 将没有输出。该代码只是一个 Playground 示例,因此可以复制到那里运行。

import UIKit
import PlaygroundSupport

class AwesomeView: UIView {
    override init(frame: CGRect) {
        super.init(frame: frame)

        backgroundColor = UIColor.getRandomColor()

        let tapGesture = UITapGestureRecognizer(target: self, action: #selector(tapHandler))
        self.addGestureRecognizer(tapGesture)
    }

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }

    override func layoutSubviews() {
        guard let superview = superview else {
            return
        }

        self.frame = superview.frame
    }

    func tapHandler(_ sender: AnyObject) {
        print("Tapped")
    }
}

extension UIColor {
    static func getRandomColor(_ hash: UInt32 = arc4random()) -> UIColor{

        let randomRed:CGFloat = CGFloat(hash) / CGFloat(UInt32.max)
        let randomGreen:CGFloat = CGFloat(hash << 4) / CGFloat(UInt32.max)
        let randomBlue:CGFloat = CGFloat(hash << 2) / CGFloat(UInt32.max)

        return UIColor(red: randomRed, green: randomGreen, blue: randomBlue, alpha: 1.0)
    }
}

class DummyVC: UIViewController, UIScrollViewDelegate {

    let scrollView = UIScrollView(frame: CGRect(x:0, y:0, width:320,height: 300))
    var contentView: UIView!
    var frame: CGRect = CGRect(x:0, y:0, width:0, height:0)

    override func viewDidLoad() {
        super.viewDidLoad()

        contentView = UIView(frame: scrollView.frame)
        scrollView.addSubview(contentView)

        self.view.addSubview(scrollView)

        for index in 0..<4 {

            frame.origin.x = self.scrollView.frame.size.width * CGFloat(index)
            frame.size = self.scrollView.frame.size
            self.scrollView.isPagingEnabled = true

            let subView = AwesomeView(frame: frame)
            self.contentView.addSubview(subView)
        }

        self.scrollView.contentSize = CGSize(width:self.scrollView.frame.size.width * 4, height: self.scrollView.frame.size.height)
    }
}

PlaygroundPage.current.liveView = DummyVC().view
PlaygroundPage.current.needsIndefiniteExecution = true



Best Answer-推荐答案


我认为您需要正确设置 contentView 的大小。现在你将 contentView 的 frame 设置为 scrollView 的 frame 的大小,即总大小的 1/4。注意 viewDidLoad 中的最后一行,我们将 contentView 的 frame 设置为 scrollView 的内容大小。

    class DummyVC: UIViewController, UIScrollViewDelegate {

        let scrollView = UIScrollView(frame: CGRect(x:0, y:0, width:320,height: 300))
        var contentView: UIView!
        var frame: CGRect = CGRect(x:0, y:0, width:0, height:0)

        override func viewDidLoad() {
            super.viewDidLoad()

            var contentFrame = scrollView.frame
            contentFrame.size.width *= 4
            contentView = UIView(frame: .zero)
            scrollView.addSubview(contentView)

            self.view.addSubview(scrollView)

            for index in 0..<4 {

                frame.origin.x = self.scrollView.frame.size.width * CGFloat(index)
                frame.size = self.scrollView.frame.size
                self.scrollView.isPagingEnabled = true

                let subView = AwesomeView(frame: frame)
                self.contentView.addSubview(subView)
            }

            self.scrollView.contentSize = CGSize(width:self.scrollView.frame.size.width * 4, height: self.scrollView.frame.size.height)
            //new line to set contentView's frame
            contentView.frame = CGRect(origin: .zero, size: scrollView.contentSize)
        }
    }

关于ios - View 已绘制但未检测到手势识别器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44101656/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap