UIButton 位于 UIScrollView 不可见区域

发布于 2024-11-07 09:15:01 字数 104 浏览 0 评论 0原文

如何获得位于 UIScrollView 中但最初不可见区域的按钮的点击按钮?

已解决
问题是内容在非剪辑视图中可见 - 因此无法触摸。

How can I get a button tap for a button which is located in a UIScrollView, but in its initially non-visible area?

Solved
Problem was that the content was visible within a non-clipped view - therefore not getting touches.

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

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

发布评论

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

评论(1

永不分离 2024-11-14 09:15:01

我认为你应该向 UIButton 添加一个操作(下面代码中的 yourAction )。

以编程方式:

[button addTarget:self action:@selector(yourAction:) forControlEvents:UIControlEventTouchUpInside];


-(void)yourAction:(id)sender{
    // your code
}

使用 gui 构建器,您应该将 UIButton 连接到 .h 控制器文件中定义为 IBAction 的操作:

-(IBAction)yourAction:(id)sender;

I think you should add an action (yourAction in the code below) to the UIButton.

programmatically:

[button addTarget:self action:@selector(yourAction:) forControlEvents:UIControlEventTouchUpInside];


-(void)yourAction:(id)sender{
    // your code
}

With the gui builder you should connect your UIButton to an action defined as IBAction in your .h controller file:

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