如何限制iphone中xcode中的对象移动?

时间:2010-02-05 21:35:02

标签: iphone xcode

这是我的第一个问题,如果说它不够具有描述性,那么道歉。

我目前有一个可以通过拖动沿x轴移动的对象。我需要将它的移动限制在屏幕的一半。

任何人都可以提供帮助

1 个答案:

答案 0 :(得分:0)

这很简单。假设我们正在谈论移动UIView

// Only move the object if its right bounding box position is
// in the first half of the screen

if ((someObjectView.frame.origin.x + someObjectView.frame.size.width) < 
        (containingView.bounds.size.width / 2.0) {
    // Move the object
}

你填空: - )