带偏移的PureLayout中心

时间:2016-07-05 22:21:36

标签: ios swift autolayout

我一直试图将以下UIView置于手机绝对中心上方70像素的中心位置。我想使用PureLayout,以便在iPad上使用分屏或旋转屏幕时约束会发生变化。这是我目前的代码:

if (typeof(Storage) !== "undefined") {
  // Code for localStorage/sessionStorage.
  localStorage.setItem("lastname", "Smith");
  var lastname = localStorage.getItem("lastname");
} else {
    // Sorry! No Web Storage support..
}

1 个答案:

答案 0 :(得分:1)

您正在使用PureLayout吗?

self.checkBall.autoAlignAxis(.vertical, toSameAxisOf: self.view)
self.checkBall.autoAlignAxis(.horizontal, toSameAxisOf: self.view, withOffset: -70.0)