以编程方式更改 iPhone 上的 UIImageview 位置

发布于 2024-12-01 19:30:10 字数 227 浏览 1 评论 0原文

我创建了一个 iPhone 测验应用程序,其中一些问题有图像,有些问题没有图像。为此,我使用 UItextfield 来显示问题,并使用 UIImageView 来显示问题图像。但是,当出现没有图像的问题时,问题会显示在 xib 的上方,而选项会显示在 xib 的下方,这是不好的。我想更改图像视图和文本字段的位置以对应问题图像。如何更改 uicontrol 的位置?请帮助我。提前致谢。

I have create a iPhone quiz application where some questions have image and some is without image. For this I took a UItextfield for displaying question and a UIImageView for displaying question Image. But when question without image is appears then the question is displayed upper size of the xib and options are displayed lower side of the xib which is not good. I want to change the position of the image view and text field with correspond to question image. How can i change the position of uicontrol?. Plz help me. Thanks in advanced.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鱼窥荷 2024-12-08 19:30:10

这就是重新定位/调整 UIView 大小的方法。

CGRect frame = myControl.frame;
frame.origin.x = newX;
frame.origin.y = newY;
frame.size.width = newWidth;
frame.size.height = newHeight;
myControl.frame = frame; 

This is how you reposition / resize a UIView.

CGRect frame = myControl.frame;
frame.origin.x = newX;
frame.origin.y = newY;
frame.size.width = newWidth;
frame.size.height = newHeight;
myControl.frame = frame; 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文