如何在 Objective c 中以编程方式更改 NSBox 位置(或位置?)
我正在学习objective c并且正在制作一些小程序。对于我当前的项目,我正在使用 NSBox
并根据随机数更改它的位置。如何更改盒子的位置?对于 C#,这是一个简单的 box.location = anotherLocation
但我不知道如何在 Objective-C 中做到这一点?
I am learning objective c and am making some small programs. For my current project i am taking a NSBox
and changing it's location based on a random number. How do I change the box's location? With C# it was a simple box.location = anotherLocation
but I can't figure out how to do this in Objective-C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要更改 NSBox 的位置,您必须使用 setFrame 方法:
To change the location of the NSBox, you have to use the
setFrame
method: