Xcode 7 Beta 3 is the third beta release of Apple's IDE. It fixes many bugs along with the introduction of a few minor updates. The official launch of Xcode 7 will be in September along with iOS 9
Questions tagged [xcode7-beta3]
53 questions
5
votes
3 answers
iOS 9, Xcode 7, Multitouch with SpriteKit
Hello I've made an iOS game named 'Racing Horses' and published it to App Store. It was fine with playing on iOS 8.x.x, but after I installed iOS 9 Beta 3, in the same game (same codes), iPhone cannot recognize multiple touches. I have to leave my…

white5tone
- 166
- 8
4
votes
1 answer
Unable to import GoogleMaps into framework in Xcode 7
I have a new project where I am using XCode 7 beta 3 and Swift 2.0 using GoogleMaps imported via cocoapods. This is a WatchKit 2.0 app, so I have a main target for the iPhone (Destinations), a target for the Apple Watch (Destinations WatchKitApp &…

Dan Nichols
- 769
- 1
- 7
- 19
3
votes
1 answer
How to check if AVPlayerViewController fast forward control has been pressed?
I have an AVPlayerViewController and AVPlayer that shows default controls. When the player is in fullscreen the >>| button acts as a fast forward but i would like to override/delegate this to act as a next button and call my playNextVideo() method.…

justin shores
- 687
- 7
- 24
3
votes
1 answer
Autolayout issue after updating to Swift 2.0
After downloading Xcode 7.0 and migrating to Swift 2.0, i am getting the following error.
Attempt to add this NSLayoutConstraint to an engine in which it already exists. This can cause engine corruption. Break on void…

Saurabh Jain
- 3,013
- 3
- 11
- 9
3
votes
1 answer
Is Xcode 7 Debug Mode Working?
Using Xcode 7 Beta 3
The code below is failing to enter the #if DEBUG statement properly. I'm almost certain I'm in debug mode, but for some reason the following code isn't working:
#if DEBUG
btnPrintPath.title! = "PrintPath"
#else
…

kbpontius
- 3,867
- 1
- 30
- 34
3
votes
2 answers
Swift 2.0 interop with Objective C not working as expected?
I'm porting a Swift 1.2 framework to 2.0. After fixing the 3 million compiler errors courtesy of the new Swift 2.0 error handling scheme, I was finally able to link my test app (written in Objective C) to use the updated framework.
Xcode version 7.0…

Daniel
- 8,794
- 4
- 48
- 71
3
votes
3 answers
Attempting to run multiple tests using Xcode's new UI testing fails
When I try to run multiple UI tests at the same time in the new Xcode beta, it fails after the first test, with the error "UI Testing Failure: App state is still not terminated" for each test after the first. Anyone got a fix for this?

OsterGuard
- 43
- 1
- 3
3
votes
4 answers
Cannot create NSDictionary to define AVCaptureVideoDataOutput videoSettings
@Update 2: I was able to fix it using the Swift Dictionary literal.
videoDataOutput.videoSettings = [kCVPixelBufferPixelFormatTypeKey as NSString: NSNumber(unsignedInt: kCVPixelFormatType_32BGRA)]
First, quick disclaimer: this is the first real…

osuka_
- 484
- 5
- 15
2
votes
2 answers
Using Xcode Playground captureValue()
I'm using Playgrounds in Xcode 7.1 (beta 3) but having trouble with the captureValue() function:
captureValue:withIdentifier: Captures a value to be displayed with the
specified identifier in the timeline.
Declaration
public func…

Richard Stelling
- 25,607
- 27
- 108
- 188
2
votes
1 answer
WKWebView error: "The requested URL was not found on this server"
in xcode 7 beta3
When I use object-c is all right, but when I use swift I get an error: "The requested URL was not found on this server", Why?
here is code:
#import "ViewController.h"
#import
@interface ViewController ()
…

vvw
- 31
- 1
- 2
2
votes
2 answers
When trying to convert a UITextField text to Int Xcode 7 gives me an error
I'm new to programming and after doing some tutorials online I decided to make my own app with Xcode 7 to be able to run my app on my iPhone. But when I try to get input data from a text field and put it into a var it gives me an error. I have tried…

Guilherme Marques
- 75
- 2
- 8
2
votes
0 answers
Apple Watch OS2 beta 3 - App stuck spinning on physical watch
We're developing an app for Android Wear and Apple watches. We can't get our Apple watch to actually run our app, it just shows a spinner when opened up. Note the app runs fine in the simulator.
I've tried rebooting, uninstalling, resetting,…

Matt Ober
- 118
- 6
2
votes
0 answers
NSToolbarItem Segue Popover using Storyboards in Xcode 7 beta 3
I'm trying to create a popover from a NSToolbarItem using storyboards. I'm using OS X 10.11 beta 3 and Xcode beta 3. This is my setup:
before beta 3 I simply placed a view controller near the window controller, then dragged from the toolbar item to…

gbdavid
- 1,639
- 18
- 40
1
vote
1 answer
How do you get to the new Apple TV's GameCenter logs?
I'm implementing Game Center in our Apple TV app and we're having some issues. I'm hoping that the Game Center logs will help us out. We went to settings and exported the logs, but it says they saved…

Joshua Howland
- 11
- 2
1
vote
0 answers
ld: framework not found "CustomFrameworkName"
I am trying to create a Custom Framework following this url
http://www.makeandbuild.com/blog/post/watchkit-with-shared-core-data
However When I am creating a custom framework called "DataStore"
Ld…

Harsh K
- 77
- 1
- 10