如何在 Objective c 中以编程方式更改 NSBox 位置(或位置?)

发布于 2024-08-29 13:27:37 字数 178 浏览 3 评论 0原文

我正在学习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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我老 2024-09-05 13:27:37

要更改 NSBox 的位置,您必须使用 setFrame 方法:

NSRect frame = [box frame];
frame.origin = NSMakePoint(newX, newY);
[box setFrame:frame];

To change the location of the NSBox, you have to use the setFrame method:

NSRect frame = [box frame];
frame.origin = NSMakePoint(newX, newY);
[box setFrame:frame];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文