0

我正在尝试模拟在应用程序内的主屏幕上按下未启用的强制触摸应用程序图标的相同效果。它会像往常一样开始褪色,一旦你用力按下,它就会恢复到正常状态并振动三下(并且不会打开应用程序)。

我在 Apple 上找不到任何关于这个明确案例的文档,所以到目前为止我一直在努力模拟:

func previewingContext(previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
    // I have a list of 'supported items' that will return the correct preview ViewController, 
    // and some of them are not supported returning the following lines:

    // IMPORTANT TODO: Verify this is "Legal"
    AudioServicesPlaySystemSound(1521)

    return nil
}

到目前为止的问题:“非按下”视图不会消失。振动后,如果您在释放触摸时不移动触摸,则视图将充当“轻按”(这是一个问题,因为我正在检测轻按并打开另一个视图)

4

1 回答 1

0

解决方案是返回一个 ViewController 来关闭自己viewDidAppear:。这是一个例子:

// In UIViewControllerPreviewingDelegate
func previewingContext(previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
      return PeekPopInvisibleViewController()
}

// Custom class to simulate 'no option':
private class PeekPopInvisibleViewController: UIViewController {

   init() {
      super.init(nibName: nil, bundle: nil)
      view.backgroundColor = UIColor.clearColor()
   }

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

   override func viewDidAppear(animated: Bool) {
      dismissViewControllerAnimated(false, completion: nil)

      // This plays the '3 vibration' effect
      AudioServicesPlaySystemSound(1521)
   }
}
于 2016-05-30T09:42:01.023 回答