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
39
votes
7 answers
UIAlertController:supportedInterfaceOrientations was invoked recursively
When two alert present one by one, i means one alert present and over them another alert presenting and app crashing.
I have used UIAlertController to display alert. App crashing only in iOS 9 device.
Please help me at this point.

Ashvin
- 8,227
- 3
- 36
- 53
19
votes
5 answers
How to open URL schemes from Safari in iOS9?
I was able to open apps from safari this way:
window.location = 'myapp://do/xx';
or open facebook app:
window.location = 'fb://';
But this stopped working in iOS9.
How can I open apps using URL schemes in safari?

kevin
- 4,177
- 10
- 32
- 33
17
votes
3 answers
Dyld warnings from using cocoapods
I received these warnings that have haunted me for two days.
dyld: warning, LC_RPATH @executable_path/../lib in…

skydiving94
- 201
- 2
- 7
16
votes
2 answers
How to automatically sort by name in Xcode project
I like having my files sorted by name, but I don't seem to be able to find an option in Xcode to allow me to sort by name automatically in the project navigator (not the right click and sort by name)? This is very annoying when I have to hunt for my…

Bjarte
- 2,167
- 5
- 27
- 37
16
votes
2 answers
No architectures to compile for (ARCHS=, VALID_ARCHS=armv7k) Xcode 7 beta 3
My app have a watch kit support.
Previously, with Xcode 6.4 my app was running properly.
After updating with Xcode 7 beta 3 I am getting this error -
No architectures to compile for (ARCHS=, VALID_ARCHS=armv7k).
I am not sure in which target to…

Nayan
- 3,014
- 2
- 17
- 33
15
votes
4 answers
Apple watch app stuck loading (shows a spinning wheel) on real device
I created a brand new empty apple watch app in XCode 7.0 beta 3 (7A152u).
In the simulator it runs fine, however I can't get it to work on a real apple watch. The app launches but watch device is stuck on a spinning wheel loading screen and the…

Niko Zarzani
- 1,372
- 2
- 15
- 28
11
votes
7 answers
Xcode 7 beta 3 crash at startup
I have a problem after XCode7 beta 3 installation: is not possible for me to use Xcode because every time it crash at startup! I have only the crash report but I don't understand where is the problem. My Xcode 6.4 works without problem. Can someone…

Lorenzo
- 3,293
- 4
- 29
- 56
9
votes
1 answer
dispatch_async() with throwables swift 2 Xcode 7
Trying to use dispatch_async in which i need a throwable call, but Swift's new error handling, and method calls are confusing me, if anyone could show me how to do this correctly, or point me in the right direction, I would greatly appreciate…

justin shores
- 687
- 7
- 24
8
votes
7 answers
Xcode 7 Err "Editor placeholder in source code"
I have just started trying to learn Swift, but one error keeps cropping up time and again and I can not find out why - "Editor placeholder in source code". What could be causing this (I am unable to post a picture of the code as I am a new…

Richard
- 91
- 1
- 1
- 3
8
votes
2 answers
How to use xcodebuild in Xcode 7 with a watch extension
Our command used to be like this
xcodebuild -configuration Release -target "xxx" -sdk iphoneos9.0 -scheme "xxx" archive
Now in Xcode 7, we get this error:
Build settings from command line:
SDKROOT = iphoneos9.0
=== BUILD TARGET xxx WatchKit…

Jason Hocker
- 6,879
- 9
- 46
- 79
7
votes
2 answers
How to set image for button in Swift/Xcode
I am receiving a "nil" error when trying to set the image for a button programmatically. What am I doing wrong? These are all not optionals.
@IBOutlet weak var scrollView: UIScrollView!
var imageButton: UIButton!
var index: Int = 0
var images:…

user190494
- 509
- 2
- 8
- 20
7
votes
1 answer
Building a Swift Framework with Xcode 7 (Beta 3) to use as an Embedded Binary
Ever since Embedded Binaries were introduced in iOS 8, I have been wanting to port a lot of my common code into frameworks. I decided to wait one year before doing it and this year, with Xcode 7 Beta and iOS 9, I'm starting to do that just that.
I…

Andy Ibanez
- 12,104
- 9
- 65
- 100
7
votes
1 answer
Integer overflow gives EXC_BAD_INSTRUCTION in Swift
While messing around with Swift, I noticed that when the 64 bit integer overflows, I get the following error:
file:///Users/user/Documents/playground/MyPlayground.playground/: error: Playground execution aborted: Execution was interrupted, reason:…

BitParser
- 3,748
- 26
- 42
6
votes
2 answers
Xcode 7.0 Beta fails to launch a watchOS 2 App on Apple Watch
Tried a public sample code project and my own project. Observe no problem with watchOS 1.
watchOS 2 App installs and operates successfully on the real Apple Watch and the simulator, but it won't support the debug mode launching the app on the device…

Kevin
- 828
- 11
- 14
5
votes
1 answer
How to set version number for SDK in iOS/Objective C?
I'm writing an iOS SDK using Objective-C programming language. I would like to know if there is a field in Xcode where i can set version number for SDK
Is there a way in objective-C to set version and build number the way we do it for iOS apps (EX:…

Ankit Jain
- 1,858
- 22
- 35