English 中文(简体)
UIAScrollview和UIAWebview等UIAElements及其子类别是什么?
原标题:What are UIAElements and their subclasses, like UIAScrollview and UIAWebview?

我看到这些地方提到的UIAElement级,但我无法找到这方面的大量文件。

这一点是否由Interface Buildinger产生? 例如,如果I drag a UIWeb 浏览界面,是否形成相应的UIAWebView?

最佳回答

这些项目的预设部分中的“A”是指自动化(或可能便于查阅)。 这些是UI式班级,用于国际标准化组织自动化工具的文字。 这些文件的完整清单见http://developer.apple.com/library/ios/#documentation/DeveloperTools/Reference/UIAutomationRef/_index.html“rel=” UI 自动化参考资料收集。

这些内容大致与用户接口内容相对应,你将在贵单位自动化印章中测试。 举例来说,你领导了“妇女团结”组织,在你的书中做一些事情,在你的申请中,它可以推动一个相应的“妇女团结”组织。

您提供的这些无障碍信息的关键内容,因此也值得阅读。 《无障碍规划指南》。

You can refer to the WWDC 2010 video session 306 - Automating User Interface Testing with Instruments, or the testing session of my class on iTunes U for more on how all of this works.

因此,它们不是由Interface Buildinger产生,而是管理其他东西。

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签