gpt4 book ai didi

ios - 如何通过 -addSublayer : respond to touch events? 添加 UI 元素

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:17:59 24 4
gpt4 key购买 nike

下面是我用来通过 -addSublayer 将 UIButton 添加到层的代码:

CAGradientLayer * tile = [[tile alloc] init];      

UIButton *XImageButton = [[UIButton alloc]init];
XImageButton.frame= CGRectMake(kXButtonlocX, kXButtonlocY, kXButtonHeight,kXButtonWidth );

[XImageButton setTitle:@"xbutton" forState:UIControlStateNormal];
[XImageButton addTarget:nil action:@selector(XbuttonTouchEvent)
forControlEvents:UIControlEventTouchUpInside];

[tile addSublayer:XImageButton.layer];

XImageButton 没有响应触摸事件。我怎样才能解决这个问题,让它做出响应?

最佳答案

你不能。您必须将按钮添加为 subview 。

UIKit 触摸事件转发是 UIResponder 的一个特性,而 CALayers 不继承自 UIResponder,所以除非你想从第一原则实现触摸处理,否则这不是要走的路。

要将渐变图层转换为 View ,有两种选择:

1) 创建一个新的 UIView 子类并覆盖其 +(Class)layerClass 方法以返回 CAGradientLayer。

2) 创建一个常规的 UIView 并将您的 CAGradientLayer 添加为子层,然后将您的按钮添加为 View 的 subview ,而不是直接将其添加到 CAGradientLayer。

关于ios - 如何通过 -addSublayer : respond to touch events? 添加 UI 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8110543/

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