Apple's Xcode 7 beta 5 is a prerelease version of Xcode 7 released on August 6, 2015.
Questions tagged [xcode7-beta5]
82 questions
0
votes
0 answers
Using iOS 9 / Xcode 7 Beta 5: Parse's "findObjectsInBackgroundWithBlock" appears to never return
I have code that works great in iOS 8, built using Xcode 6. It looks a little something like this:
PFQuery *query = [PFQuery queryWithClassName:@"SomeClass"];
query.cachePolicy = kPFCachePolicyNetworkElseCache;
[query…

Josh Knowles
- 395
- 4
- 19
0
votes
1 answer
Group and Sort Dictionary Data in TableViewController with Swift
I have a Dictionary data structure like below and I am trying to group them in my TableViewController such that Group A displays MyData that starts with title = A and at the same time display sectionIndexTitlesForTableView with available letters…

0x0
- 363
- 1
- 4
- 19
0
votes
1 answer
Xcode 7.5 beta-No Known instance method for selector 'accessibilityValue'
I have open my application for Xcode 7.5 beta, I am getting following error in Apple Watch code - Please help me. Thanks.

Anupam Mishra
- 3,408
- 5
- 35
- 63
0
votes
1 answer
"Include Glance Screen" Watch OS 2.0
I am creating a new watch app and there is an option "Include Glance Screen". I tried searching for it but not able to get it what it do. What effect it will make on checking.

Manish Agrawal
- 10,958
- 6
- 44
- 76
0
votes
1 answer
Xcode 7 finding the cause of SIGABRT
I am using Xcode 7 beta 5 and creating a multiview application. One view has a button that brings you to a second view, but when this button is pressed it crashes with Thread 1: Signal SIGABRT.
I have checked all the connections of things inside…

Eben Collins
- 3
- 4
0
votes
1 answer
podspec lint failing with latest Xcode beta
I'm running pod spec lint --verbose and get the following output:
- Creating Pods project
- Adding source files to Pods project
- Adding frameworks to Pods project
- Adding libraries to Pods project
- Adding resources to Pods project
-…

Ashley Mills
- 50,474
- 16
- 129
- 160
0
votes
0 answers
Failing to submit archive to itunes connect using Xcode 7 beta 5
When i try to send my archive to itunes connect (upload to app store) i receive the following errors:
All of the frameworks mentioned in the errors are installed with Pod. I tried cleaning and rebuilding and try reinstalling all pods. What might…

Erik Sapir
- 23,209
- 28
- 81
- 141
0
votes
0 answers
How do I switch from One Nib/Storyboard to another Nib/Storyboard?
Environnment:
Xcode 7.0/Swift 2.0 for iOS 9 platform.
Scenario:
I disseminated my large UIStoryboard object into four smaller UIStoryboards; each storyboard link to its respective tab:
I want to link from one member scene/storyboard to a…

Frederick C. Lee
- 9,019
- 17
- 64
- 105
0
votes
1 answer
Swift 2.0 / Xcode 7B5 - Classes can only be found if put in a certain file
I noticed that at a given point the class User could not be found when I wanted to use it in other classes. Nothing suspicious about it. At a given point I started to experiment with what place I put the code.
If I put all these classes together in…

Lucas van Dongen
- 9,328
- 7
- 39
- 60
0
votes
1 answer
Carthage + Quick framework + Swift 2 = "error: module file was created by an older version of the compiler; rebuild 'Quick' and try again"
I'm using Xcode 7 beta 5 (it's the only xcode currently installed) with Swift 2 and when I try to run unit tests with Quick, I get the following error:
error: module file was created by an older version of the compiler; rebuild 'Quick' and try…

Willam Hill
- 1,572
- 1
- 17
- 28
0
votes
2 answers
If string contains statement - Swift 2 Xcode 7
I am using the Xcode 7 beta 5 and Swift 2. I currently have a UITextField and a UIButton. The UITextField is set to a decimal pad, but however, the user is able to enter in multiple decimals. That is not how I would like the app to work. I would…

Pranav Wadhwa
- 7,666
- 6
- 39
- 61
0
votes
1 answer
Anyone got NSURLConnection working on iOS 9 without exceptions?
I am trying to run my app on iOS 9 -- Xcode 7 beta 5. Although my URLs are https, NSURL connection is still throwing an error:
NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
I am trying to avoid using an exception to…

Richard
- 1,249
- 16
- 25
0
votes
1 answer
Alamofire tests include self-signed cert?
I am having trouble with Xcode 7.0.5 and self-signed certs (I think). I'm wondering if any of the Alamofire swift-2.0 branch test cases cover self-signed certs?

Bill Wynne
- 53
- 5
0
votes
2 answers
Updated to Xcode 7 Beta 5 and receiving this error: failed with exit code 6
I recently updated to Xcode 7 beta 5 and I tried to run my project but it failed with 1 error:
Command /Volumes/Xcode 1/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 6
I not sure why this…

Ben77006
- 123
- 1
- 1
- 6
0
votes
1 answer
Xcode 7 SceneKit object's position property does not update when moved?
So I'm making a game and in said game, you will use a DPad to move your ball around the scene. I'm using Xcode 7 Beta 5 though the same problem existed in beta 4. Here is the code of a test view controller:
class TestController:…

Nerdy Lime Apps
- 331
- 2
- 5
- 18