gpt4 book ai didi

ios - 如何在 ipad 应用程序中单击 uiimage 时打开 View (另一个 xib)

转载 作者:行者123 更新时间:2023-12-01 19:20:47 24 4
gpt4 key购买 nike

如何在 ipad 应用程序中单击 uiimage 打开 View (另一个 xib)。请告诉我是否有人知道提前谢谢。
我在某处读到它可以通过使用类的自定义委托(delegate)来完成,但我无法实现它。

最佳答案

首先,您必须启用 xib 中 imageView 的用户交互,如图所示,请参阅 enter image description here

现在添加一个 TapgastureREcognizer 如下

UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapAction:)];
tapGesture.numberOfTapsRequired = 1;
tapGesture.numberOfTouchesRequired = 1;
[fr addGestureRecognizer:tapGesture];

这里 fr是 ImageView 和 tapAction:是可以显示其他 View 的方法(xib)

关于ios - 如何在 ipad 应用程序中单击 uiimage 时打开 View (另一个 xib),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10448034/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com