ios – 如何使用Swift生成Shake Gesture(XCTest)

我正在使用
Swift和XCTest为我的应用程序编写UI测试,我必须摇动设备才能收到通知,请你告诉我如何在代码中生成摇动手势. 最佳答案 斯威夫特3

override var canBecomeFirstResponder: Bool {
    return true
}

override func motionEnded(_ motion: UIEventSubtype, with event: UIEvent?) {
    if motion == .motionShake {
        print("Shaked")
    }
}
点赞