Apple's Xcode 7 beta 6 is a prerelease version of Xcode 7 released on August 24, 2015.
Questions tagged [xcode7-beta6]
51 questions
1
vote
2 answers
Is there any way to check element exists in XCTest other than .exists function?
Currently, I am working in XCTest iOS framework and using .exists function to check the element presence. Want to know if there is any other way to check the presence of element on UI as .exists is getting problem. Tests get successful on the first…

OsamaA
- 451
- 1
- 8
- 13
1
vote
1 answer
Re open the review and converter to Swift 2.0-Xcode 7
I open my project (swift 1.2) by Xcode 7, and the Xcode suggestion to me convert to Swift 2.0. But I canceled it, now I want to open the review and converter of Xcode 7. How to do that?

lee
- 7,955
- 8
- 44
- 60
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
2 answers
Xcode 7.0 beta 6: Issue with VectorKit
I'm using MapKit in my App. Everything is fine except with iOS9.
I recently downloaded Xcode7.0 beta 6 and ran my project in iOS9 beta, App is hanged with the following error message in…

Ashok
- 5,585
- 5
- 52
- 80
1
vote
0 answers
HTTPS connection error on MAMP server
I have setup a MAMP server and configured an SSL site. I have verified it works with a call (https://app.dev:8890/login/hello.html) to a simple html file.
i found a test app that woks and connects to a remote server with no issues.
I modified the…

J Mac
- 11
- 2
1
vote
1 answer
Passing a Closure as an Argument to another Function won't work
I have a function evaluate that takes arguments. The first argument is an Int. The second argument of a closure that takes an Int and returns a Double. The function evaluate then returns a [Double]. The k’th element of the returned array is the…
1
vote
0 answers
How to create and use a private pod in swift 2 and XCode 7 beta 6
I have created a private pod library. I can use classes I created in a pod in an Example app that is pre-created with "pod lib create" command. I have pushed and tagged the library in a private git repo.
Then I create a new project, do pod init,…

Dan
- 11,077
- 20
- 84
- 119
1
vote
0 answers
Crash when debug sources after install Xcode 7
Seems there is an issue right now. I am trying to debug sources in Xcode 6, but when I get a line where I put breakpoint Xcode 6 unexpectedly crashes.

Matrosov Oleksandr
- 25,505
- 44
- 151
- 277
1
vote
1 answer
How to perform changes live on UIView in Storyboard without setting any @IBinspectable property?
In Storyboard I have UITextField, I also created custom class:
class WLTextField: UITextField {
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
layer.cornerRadius = 2
layer.masksToBounds = true
…

Bartłomiej Semańczyk
- 59,234
- 49
- 233
- 358
1
vote
0 answers
PubNub setup with Swift Xcode 7 beta 6
I have setup pubnub with swift using a pods and a bridging header. In the ViewDidLoad of my ViewController I'm attempting to initialise it and it fails at
client?.subscribeToChannels(["My_Channel"], withPresence: false)
It is ultimately failing in…

josh k
- 268
- 1
- 11
1
vote
1 answer
App crashes while running the archived exported .ipa but works on simulator and side loading the app onto device
I'm currently using Xcode 7 Beta 6 and the app works on the simulator and the device when I deploy directly using my developer's certificate. However, when I try to create an IPA file using the Archive feature, the app is not able to launch from…

Jen C
- 460
- 5
- 14
1
vote
1 answer
Can App Transport Security exception domains be modified at runtime?
In my app, APIs provide the domains for images and videos during runtime and I need to allow these connections to be made. Using NSAllowsArbitraryLoads seems to be the only satisfactory thing I can do right now, but I would like to take advantage of…

Stefan Miller
- 90
- 7
1
vote
1 answer
Xcode 7: Xcode cannot run using the selected device
After upgrade to Xcode 7, Xcode cannot run tests on simulator.
$ xcodebuild test -sdk iphonesimulator -scheme MyProject
Build settings from command line:
SDKROOT = iphonesimulator9.0
xcodebuild: error: Failed to build project MyProject with…

Quanlong
- 24,028
- 16
- 69
- 79
1
vote
2 answers
Xcode 7 beta 6 cannot create new project
Xcode crash when creating a new project, I have tried the following solutions
Reset Xcode preferences with defaults delete com.apple.dt.Xcode
Restart Mac OS X
Update Mac OS X to 10.11 Beta (15A216g)
The issue still exist while Xcode beta 5 works…

Quanlong
- 24,028
- 16
- 69
- 79
0
votes
2 answers
How Do I Make A Button Get An Alert View To Pop Up When Pressed And Go Back To The Main View Controller?
NOTE: Apologies in advance for my lack of being able to explain easily, as well as being only half a semester of coding knowledge, high school
So, recently I have had a project I have to do for a class, and it's one of those basic…