Questions tagged [xcode7-beta4]

Apple's Xcode 7 beta 4 is a prerelease version of Xcode 7 supporting development of iOS, Mac OS X and watchOS apps. It was released on July 21, 2015.

58 questions
0
votes
1 answer

Test Watch OS 1 App in Xcode 7 Simulator

How can I test a Watch OS 1 app in El Capitan? Xcode 6.4 constantly crashes, and Xcode 7 doesn't seem to support Watch OS 1 simulators.
0
votes
1 answer

AddressBook not working in iOS9

Recently I have downloaded Xcode beta4 for giving support to iOS 9 in myApp.Now the address book is not working its show blank screen when I select a contact, with following logs. plugin com.apple.MobileAddressBook.ContactsViewService…
Divyant
  • 69
  • 1
  • 8
0
votes
1 answer

why is xcode 7 not running an app on ios 9?

Lately installed Xcode 7 beta 4. My app will not run on an iOS 9.0 device, although it will run on an iOS 9.0 simulator, and an iOS 8.4 device (using Xcode 7b4). Xcode shows "Running %app_name on %device_name", the icon shows up on the device, but…
Jony Shlomoff
  • 349
  • 1
  • 9
0
votes
2 answers

Swift 2 Playground(Xcode 7 Beta 4) - Multiple types in an array only work when UIKit imported?

I was trying out Swift arrays in the Playground, when I noticed this peculiar behaviour The below code works fine. import UIKit var array = [1,2,3,"Booyaa"] But, as soon as I remove the "import UIKit" line from the Playground, I get the following…
kkaosninja
  • 1,301
  • 11
  • 21
0
votes
0 answers

dispatch_once is not considered in code coverage

This is my class method: class func sharedManager() -> DBSearchOptionsManager { struct Static { static var onceToken: dispatch_once_t = 0 static var instance: DBSearchOptionsManager? = nil } …
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
0
votes
0 answers

Limit code completion in XCode

Is there any way I can have code completion as follows in Xcode (6.4 or 7) Assume I have a line DDLogDebug(@"Retrieved file content %@",fileTitle); I now wish to change it to DDLogVerbose I put my cursor on the D(after g) and type a V I then hit…
Ryan Heitner
  • 13,119
  • 6
  • 77
  • 119
0
votes
0 answers

NSCompoundPredicate factory method confusion

I have some code in a project that I recently updated to Swift 2.0: return NSCompoundPredicate(orPredicateWithSubpredicates: fieldPreds) This originally read return NSCompoundPredicate.orPredicateWithSubpredicates(fieldPreds) But the compiler told…
iluvcapra
  • 9,436
  • 2
  • 30
  • 32
0
votes
1 answer

Multiple Errors after updating to IOS 9 and Xcode 7.4

Ive been getting many errors since updating to IOS 9 on my iPhone and Xcode 7.4 beta on my Mac. First thing I realized was that a few of my frameworks (mostly the Lib frameworks) had turned red in my library. I deleted those but the errors…
0
votes
1 answer

Swift 2 unrecognized selector in tapgesture

I recently started to update my app to Swift 2.0, but I've run into a problem that has a hundred different answers on SO, none of which seemed to be related to my problem. (This worked before updating the application to Swift 2.0), but I havn't been…
Mark L
  • 759
  • 2
  • 12
  • 29
0
votes
1 answer

Inexplicable watchOS 2 Error

So I have my watch app asking for text input as is below but it gets this error that makes NO sense! I was hoping someone could help me out with this? Thanks in advance!
Nerdy Lime Apps
  • 331
  • 2
  • 5
  • 18
0
votes
1 answer

Can't set backgroundColor property of UITableView in Attributes inspector after update to Xcode7-beta4

I'm trying to set backgroundColor property of UITableView with Interface Builder' Attributes Inspector after update to Xcode7-beta4 and it doesn't seem to work. Steps to reproduce: Create new single view project Create UITableViewController with…
Tish
  • 497
  • 3
  • 9
0
votes
2 answers

Getting an error when trying to use imagePickerController Delegate function below:

When trying to use the following function func imagePickerController(picker: UIImagePickerController,didFinishPickingImage image: UIImage, editingInfo: [String: AnyObject]?) { let selectedImage:UIImage =…
-1
votes
2 answers

UIView Issue in swift2.0

I have created a uiview in storyboard and have placed it in some random point(autoLayout not applied) . Now in viewDidLoad() Im trying to place it at the center of the screen. But its not moving from that place and replaced at center Why? is this…
Sri Ram
  • 35
  • 8
1 2 3
4