UIATableView 始终命名为“空列表”
我正在尝试在 iPhone 上设置一些 UIAutomation 测试。每当我在主窗口上执行 logElementTree() 时,所有 UIATableView 元素的名称都是“空列表”。我尝试在相应的 XIB 文件中设置名称,但是一旦加载数据,名称就会再次设置为“空列表”。下面是调用 logElementTree() 的输出示例:
4) UIATableView [name:Empty list value:rows 1 to 1 of 1 rect:{{x:0, y:64}, {width:320, height:416}}]
5) UIATableCell [name:OfferCardTableViewCell value:(null) rect:{{x:0, y:160}, {width:320, height:416}}]
6) UIAWebView [name:(null) value:(null) rect:{{x:0, y:160}, {width:320, height:418}}]
6) UIAWebView [name:(null) value:(null) rect:{{x:320, y:160}, {width:320, height:418}}]
6) UIAWebView [name:(null) value:(null) rect:{{x:640, y:160}, {width:320, height:418}}]
如您所见,表视图不为空。有谁知道如何确保 UIATableView 元素的名称不是“空列表”?是否有一个我没有在某处实现的委托?
I'm trying to set up some UIAutomation tests on the iPhone. Whenever I execute logElementTree() on the main window, all of my UIATableView elements have the name "Empty list." I have tried setting the name in the corresponding XIB file, but once data is loaded, the name is set to "Empty list" again. The below is an example of output from invoking logElementTree():
4) UIATableView [name:Empty list value:rows 1 to 1 of 1 rect:{{x:0, y:64}, {width:320, height:416}}]
5) UIATableCell [name:OfferCardTableViewCell value:(null) rect:{{x:0, y:160}, {width:320, height:416}}]
6) UIAWebView [name:(null) value:(null) rect:{{x:0, y:160}, {width:320, height:418}}]
6) UIAWebView [name:(null) value:(null) rect:{{x:320, y:160}, {width:320, height:418}}]
6) UIAWebView [name:(null) value:(null) rect:{{x:640, y:160}, {width:320, height:418}}]
As you can see, the table view is not empty. Does anyone know how I can ensure that the UIATableView element is given a name other than "Empty list?" Is there a delegate that I am not implementing somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要为 UITableView 设置一个accessibilityLabel。至少在 Xcode 4 中,您无法在 Interface Builder 中设置此属性——因此您必须以编程方式进行设置。
You want to set an accessibilityLabel for the UITableView. In Xcode 4 at least, you can't set this property in Interface Builder -- so you will have to do it programatically.
不要使用可访问性标签来标识元素,而应使用可访问性标识符。
在界面构建器中,可以使用运行时属性设置标识符:
打开
Identity Inspector
-用户定义的运行时属性
:Don't use accessibility label to identify elements, use accessibility identifier.
In interface builder, the identifier can be set using runtime attributes:
open
Identity Inspector
-User Defined Runtime Attributes
: