如果没有 UIInterpolatingMotionEffect 类,我怎么能做视差效果。只有在 iPhone 中的加速?当您将手机向上倾斜时,我想要图像上升到的效果。只是普通的视差效果
我试过这个:
func setupParallax() {
let motion = CMMotionManager()
motion.startAccelerometerUpdates()
parallaxImage.frame.origin.x = CGFloat((motion.accelerometerData?.acceleration.x)!)
parallaxImage.frame.origin.y = CGFloat((motion.accelerometerData?.acceleration.y)!)
}