我一直试图将以下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..
}
答案 0 :(得分:1)
您正在使用PureLayout吗?
self.checkBall.autoAlignAxis(.vertical, toSameAxisOf: self.view)
self.checkBall.autoAlignAxis(.horizontal, toSameAxisOf: self.view, withOffset: -70.0)