Questions tagged «xcode7»

Xcode是Apple的IDE,用于开发iOS和OS X应用程序。使用此标记可解决有关Xcode 7的版本特定问题。


15
UI测试删除文本字段中的文本
在我的测试中,我有一个带有预先存在的文本的文本字段。我想删除内容并输入新字符串。 let textField = app.textFields textField.tap() // delete "Old value" textField.typeText("New value") 用硬件键盘删除字符串时,录音对我来说什么都没有产生。用软件键盘做完同样的事情后,我得到了: let key = app.keys["Usuń"] // Polish name for the key key.tap() key.tap() ... // x times 要么 app.keys["Usuń"].pressForDuration(1.5) 我担心自己的测试取决于语言,因此我为受支持的语言创建了以下内容: extension XCUIElementQuery { var deleteKey: XCUIElement { get { // Polish name for the key if self["Usuń"].exists { …


4
Xcode 7 iOS 9 UITableViewCell分隔符插入问题
这不是问题,而是我所面临问题的解决方案。 在Xcode 7中,当该应用程序在iPad设备上的iOS 9上运行时,UITableViewCell在的左侧留有一些空白UITableView。将设备旋转到地面会增加边距。 我找到的解决方案是: 设定cellLayoutMarginsFollowReadableWidth为NO。 self.tbl_Name.cellLayoutMarginsFollowReadableWidth = NO; 此属性仅在iOS 9中可用。因此,您必须设置条件以检查iOS版本,否则它将崩溃。 if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_8_1) { self.tbl_Name.cellLayoutMarginsFollowReadableWidth = NO; }

6
ITMS-90535无法使用最新的Google Signin SDK发布iOS应用
我正在使用xcode 7 GM种子,并通过cocoapods安装了最新的Google Signin SDK pod "Google/SignIn。当我尝试将应用发布到Apple应用商店时,出现附件错误。 救命!! 以下是Google SDK广告连播的详细版本 - Google/Core (1.0.7): - GoogleNetworkingUtilities (~> 1.0) - GoogleSymbolUtilities (~> 1.0) - GoogleUtilities (~> 1.0) - Google/SignIn (1.0.7): - Google/Core - GoogleSignIn (~> 2.0) - GoogleAppUtilities (1.0.0): - GoogleSymbolUtilities (~> 1.0) - GoogleAuthUtilities (1.0.1): - GoogleNetworkingUtilities (~> 1.0) - GoogleSymbolUtilities …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.