motioneffct - 关于iOS开发中UIInterpolatingMotionEffect的几个问题
巴扎黑
巴扎黑 2017-04-17 15:06:15
0
1
639

UIInterpolatingMotionEffect这个类有两个属性(minimumRelativeValue, maximumRelativeValue),分别对应设备移动时,实例对象为视图施加的偏移效果的最大值和最小值。

我看实例代码是这样设置这两个值的:

        motionEffet.minimumRelativeValue = @(-25);
        motionEffet.maximumRelativeValue = @(25);

我的问题是:

  1. 这两个属性的单位是什么?point吗?

  2. @()这样的写法表示什么意思?

谢谢

巴扎黑
巴扎黑

reply all(1)
阿神

Everything with @ is an object, so @(25) is NSNumber

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template