我想为我的一些 CALayer 添加accessibilityLabel。这是示例:
CALayer *testLayer = [CALayer layer];
[self.view.layer addSublayer:testLayer];
testLayer.backgroundColor = [UIColor purpleColor].CGColor;
testLayer.isAccessibilityElement = YES;
testLayer.accessibilityLabel = @"Some text";
testLayer.frame = CGRectMake(0, 300, 100, 100);
这种方法对我不起作用。是否可以使可访问性适用于 CALayers?
我不想在 superview 中使用可访问性容器(有复杂的层次结构)
谢谢!