suchen

Heim  >  Fragen und Antworten  >  Hauptteil

motioneffct - 关于iOS开发中UIInterpolatingMotionEffect的几个问题

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

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

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

我的问题是:

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

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

谢谢

巴扎黑巴扎黑2772 Tage vor641

Antworte allen(1)Ich werde antworten

  • 阿神

    阿神2017-04-17 15:08:15

    凡是有@的 都是对象 所以@(25)是 NSNumber

    Antwort
    0
  • StornierenAntwort