Apple's Xcode 7 beta 5 is a prerelease version of Xcode 7 released on August 6, 2015.
Questions tagged [xcode7-beta5]
82 questions
2
votes
4 answers
CLLocationManager didUpdateLocations is just called twice in background mode
I want to use CLLocationManager for updating the users current GPS Location in foreground and background.
I registered the app for using the location background mode in info.plist and under the targets capabilities.
On the iPhone simulator…

schleuma
- 41
- 6
2
votes
1 answer
How to let background music continue?
I want to allow a player to use their music in my game, so I want to know how to detect if the player is playing music from his music library so I can let his music continue playing and if not let my music play in the background.
I use this code to…

Michel Kansou
- 2,851
- 4
- 13
- 22
2
votes
0 answers
Scrollview embedded in UITableViewCell has an incorrect contentOffset on display Xcode 7 beta
I have cobbled together a UITableView subclass in swift that replicates some of the functionality of the swipeable buttons used in Apple's own apps. It was working fine in Xcode 7.0 beta 4 but since using beta 5, the cells are initially displayed…

rustproofFish
- 931
- 10
- 32
2
votes
1 answer
Swift 2 try/catch
I've started converting one of my projects to Swift 2 and I ran into this issue. To start this block below is perfectly valid try/catch, in fact it was generated by the Xcode migration tool.
do {
requestData = try…

rjb101
- 514
- 5
- 14
2
votes
2 answers
Reflection Swift 2.0 XCode 7 beta 5
Apple has changed the Swift reflection in XCode 7 beta 5. The global reflect() function is gone, and you'll have to do this:
let mirror = Mirror(reflecting: object)
It gives more or less the same information in a nicer way (no more .1 og .2 for…

Peheje
- 12,542
- 1
- 21
- 30
2
votes
1 answer
RestKit and CocoaLumberjack integrated as frameworks in Xcode7
I'm working on a project that uses both RestKit and CocoaLumberjack. The project also uses some other pods, some of them only exist in swift. I use cocoapods 0.38.2 for dependency management, my podfile looks like this (removed other pods for…

lawicko
- 7,246
- 3
- 37
- 49
1
vote
2 answers
Is there a quick way to fold and unfold comments in xcode 7?
Is there a quick way to fold and unfold a block of comments in xcode 7?
While I'm trying out new code I like to keep different versions of a "solution" until I decide which one is my favorite and delete the rejected material.

remedy
- 377
- 3
- 10
1
vote
1 answer
Getting View Size Not Getting Resized Size
In the view controller class I'm trying to make buttons programmatically in a 10x10 grid. I have constraints and the view is resizing properly, but the size I'm getting back and seeing from the print statement is the original size from the story…

boristhescot
- 129
- 2
- 11
1
vote
0 answers
Media stream daemon (mstreamd) stalling /restrarting during streaming
Our Objective C app (compiled on Xcode 7 beta, compatible with iOS 9) works well on all devices we tested on except sometimes on one, iPad 3 / iOS 8.1.1: When streaming online video files, sometimes files start after considerable delays or fail to…

Sleiman
- 1,620
- 1
- 12
- 16
1
vote
1 answer
Shared Text doesn't get shared to Facebook (but to others)
I have this code that shares a screenshot of the app, an initial Text and a URL via the Apple Share menu when a Share Button is pressed. It works like a charm with Twitter, Messages, Email etc, but when i wanna share to Facebook or the Facebook…

Ben Bar
- 75
- 1
- 3
1
vote
1 answer
How to selectively choose compatible devices with Xcode 7.5 beta
I am currently developing with Xcode 7.5 betas and Swift 2. I have chosen for my project to run on all iPhones. However, I do not want to run it on iPhone 4s as the screen size is too small. Is there anyway I can have it run on iPhone 5 - 6s only?

Pranav Wadhwa
- 7,666
- 6
- 39
- 61
1
vote
1 answer
Items in Root.plist are not display in settings. iOS9/Xcode7-beta5
None of my settings options are appearing for my project in iOS9. This happens not only with my project that has been converted to swift 2.0 but also the app from TestFlight which is Swift 1.2 compiled from Xcode 6. Is this an iOS 9 issue?
My…

boidkan
- 4,691
- 5
- 29
- 43
1
vote
2 answers
Enable BitCode error Xcode 7
I have tried to compile my app with Xcode 7 beta, and i receive this error:
-U and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together
if I disable it in the config settings all works fine, but it's fine to disable it? what I…

Piero
- 9,173
- 18
- 90
- 160
1
vote
1 answer
When will gestures to select specific values from DatePickers and ValuePickers become possible with the new UI Testing framework in iOS 9?
Right now, I am able to set accessibility labels and identifiers for different picker wheels in my application so that the recorder can pick up when I tap these picker wheels, and I am able to swipe up and down to modify the values, but I am unsure…

AdamQAGuy2012
- 11
- 2
1
vote
0 answers
Why is my app throwing EXC_BAD_ACCESS the second time I try to segue without a stacktrace?
I am trying to segue from a root view controller -> game view controller, then display a skscene of gameplay on gameviewcontroller, then go to a different skscene ( a game over scene), then unwindsegue to the root view controller, and then repeat.…

acahreonn
- 54
- 4