Xcode如何添加IBAction来打开图像?

发布于 2024-10-12 16:32:23 字数 444 浏览 4 评论 0原文

你好, 我正在尝试通过单击按钮打开图像, 有

@interface FirstDetailViewController : UIViewController {
    IBOutlet UIButton *premi;
    IBOutlet UIImageView *figura;

    UIButton *apri;
}

@property (nonatomic, retain) IBOutlet UIButton *apri;

@end

在我的 .h 中,我的 .m 文件中

@implementation FirstDetailViewController


- (IBAction)apri:(id)sender {


}

我必须使用哪些代码? 非常感谢

HI,
I am trying to open an image by clicking a button,
in my .h i have

@interface FirstDetailViewController : UIViewController {
    IBOutlet UIButton *premi;
    IBOutlet UIImageView *figura;

    UIButton *apri;
}

@property (nonatomic, retain) IBOutlet UIButton *apri;

@end

in my .m file

@implementation FirstDetailViewController


- (IBAction)apri:(id)sender {


}

which code I have to use ?
thank you very much

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

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

发布评论

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

评论(1

牵你的手,一向走下去 2024-10-19 16:32:23

您还需要在 .h 中包含 - (IBAction)apri:(id)sender;

就按钮使用而言,您的逻辑是正确的,您可以在 Interface Builder 中将 premi 连接到 apri:

就“打开”图像而言,处理图像的方法有很多种。您可以加载具有指定图像的 UIImageView,或使用 UIWebView,或许多其他方式。

You would also need to include - (IBAction)apri:(id)sender; in your .h.

Your logic is right as far as the button usage, you would connect premi to apri: in Interface Builder.

AS far as "opening" an image, there are many ways to handle an image. You can load a UIImageView with a specified image, or use a UIWebView, or many other ways.

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