如何更改在 Xcode 界面生成器中创建的按钮上的图像?

发布于 2025-01-05 05:59:51 字数 170 浏览 1 评论 0原文

使用 xcode 我创建了一个带有多个按钮的界面,我遇到的问题是我想在单击按钮后更改按钮上的图像。我知道如果我以编程方式创建按钮,但不知道如何更改在界面生成器中创建的图像,我将如何执行此操作。

我真的不想从头开始并以编程方式再次构建界面,所以 如果有人能指出我正确的方向,我将不胜感激。

谢谢。

Using xcode I have created an interface with several buttons, the problem I am having is that I would like to change the image on a button once it has been clicked. I understand how I would do this if I created the button programatically but no idea how to change an image that was created in the interface builder.

I don't really want to start from scratch and build the interface again programmatically so
if anyone could point me in the right direction I would appreciate it.

Thanks.

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

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

发布评论

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

评论(2

身边 2025-01-12 05:59:51

使用按钮图像属性:

@property(nonatomic, readonly, retain) UIImage *currentImage

您需要建立到 UIButtonIBOutlet 连接。

Use the button image property:

@property(nonatomic, readonly, retain) UIImage *currentImage

You will need to have established an IBOutlet connection to the UIButton.

冰雪之触 2025-01-12 05:59:51

确保您的类具有相应的按钮 UIButton 属性:

@property(nonatomic, strong) IBOutlet UIButton *m_Button;

然后在用户界面构建器中您可以连接按钮和插座。
然后,您可以在代码中访问按钮属性,就像以编程方式创建按钮一样。

Make sure your class has a corresponding UIButton property for the button:

@property(nonatomic, strong) IBOutlet UIButton *m_Button;

Then in the User Interface builder you can connect the button and the outlet.
In your code you can then access the button properties like you created it programatically.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文