Questions tagged [xcode7]

Xcode is an IDE by Apple for the development of iOS and OS X applications. Use this tag for version specific questions about Xcode 7.

is Apple's integrated development environment (IDE) for developing OS X, iOS, tvOS, and watchOS apps. Version 7 was presented at the WWDC on June 8th-12th, 2015. The new features of include an update to the programming language, making it faster than before. The latest version includes also support for .

Xcode 7 also adds support for deployment on iOS devices without an Apple Developer license.

This tag is only for IDE questions relating to Xcode version 7. Questions related to the programming languages should go to the appropriate tag, or . OS-related questions should go to and .

3952 questions
2
votes
1 answer

Invalid Bundle. iPad Mutlitasking support requires launch story board in bundle

While uploading App to AppStore from XCode 7 then I am getting the below error. Invalid Bundle. iPad Mutlitasking support requires launch story board in bundle UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight
user3124624
  • 1,206
  • 1
  • 12
  • 18
2
votes
4 answers

App stuck in splash screen on iOS 9 with no error

My app gets stuck on splash screen in iOS 9 both on iPhone and simulator. I can run it on iOS 8 or lower on device and simulator with no problem. My colleague working on the same app has exactly the same problem. There is no error or anything, just…
danialmoghaddam
  • 343
  • 1
  • 6
  • 21
2
votes
2 answers

Black screen when launching the app on device since XCode7 update

I've updated XCode7 and like everyone, i have to amend a part of my code to be compliant with Swift2. But i have a problem, when i m testing the app on the simulator i have no problem. But when i m trying directly on my real device (Iphone 5S IOS9),…
Hugo75
  • 249
  • 3
  • 15
2
votes
2 answers

xcode7 archive ad-hoc ipa can't include all devices, xcode6 is good

i don't understand why xcode7 can't archive ad-hoc ipa including all devices, xcode6 is good for that. I can make sure that my certificates is good and include all devices. Anyone else met this problem?
Lance Lan
  • 23
  • 3
2
votes
1 answer

UITextField? is not convertible to 'UITextField' after XCode 7 update

After I updated to XCode 7, I am now receiving this error "UITextField? is not convertible to 'UITextField.' I'm confused on why it can't convert all of a sudden. Any thoughts? let saveAction = UIAlertAction(title: "Search", style:…
Michael Sebastian
  • 785
  • 3
  • 15
  • 33
2
votes
0 answers

Linking error with boost::math and Xcode - Undefined symbols for architecture x86_64

I'm having some trouble linking a boost library to my C++ program in Xcode 7.0. I am running OSX 10.10.5 and I downloaded Boost 1.59.0. The error thrown by Xcode is: Undefined symbols for architecture x86_64: …
Ryan S.
  • 21
  • 2
2
votes
2 answers

Xcode debugger no longer shows offending line, rather always UIApplicationMain

I don't know what has changed on my setup, but it used to be that when my (Swift) code crashed, the debugger would show the offending line of source code. Now no matter what the problem is, the debugger only highlights the line in AppDelegate.swift…
sh37211
  • 1,411
  • 1
  • 17
  • 39
2
votes
0 answers

How to embed framework without copying in Xcode 7

If I link Cocoa Touch Framework into a project without copying but only linking then I get a linker error which says, framework is not at the location. It worked in Xcode 6, but not in Xcode 7. Do you know any workaround? I see one can set more…
János
  • 32,867
  • 38
  • 193
  • 353
2
votes
0 answers

swift - Google Places pickPlaceWithCallback closes immediately

UPDATE: Should have read the reference documentation... "A reference to the place picker must be retained for the duration of the place picking operation. If the retain count of the place picker object becomes 0, the picking operation will be…
oz21m
  • 99
  • 1
  • 5
2
votes
0 answers

Xcode 7 - How to disable iPhone 6 native resolution?

I want my app only to run in iPhone 4 and iPhone 5 resolution. In Xcode 6, you just needed to delete the Launch Screen file in order to lower the resolution ( How to disable iPhone 6 native resolution?) However, now if you don't have a Launch…
2
votes
2 answers

ld: -no_pie and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together error

When I try to execute my app from XCode 7 on my iPhone 4 I get the ld error: ld: -no_pie and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together What is that -no_pie, and how to fix the problem, without of course disabling…
Fabrizio Bartolomucci
  • 4,948
  • 8
  • 43
  • 75
2
votes
1 answer

Symbolicating crash logs in Xcode 7

I have an AppStore build that produced a crash and a crash log. I do not have the original archive (it sits in a different computer) but I do have .app.dSYM and .app files. Following the steps of Xcode 6.x related answers does not help as I cannot…
Eppilo
  • 763
  • 6
  • 19
2
votes
2 answers

Bug in Xcode 7 about precompiled header and forward declaration in C++

I found a bug in latest Xcode 7.0 that annoys us very much in our company because it makes most of our C++ code not debuggable. After lots of experiment, I was able to reproduce it with a minimum amount of code. In some cases, it is impossible to…
prapin
  • 6,395
  • 5
  • 26
  • 44
2
votes
3 answers

Xcode 7 auto layout always renders 4:3 ratio

After upgrading my project from Swift 1.2/Xcode 6 to Swift 2.0/Xcode 7 all of my view controllers are rendering in 4:3 ratio (iPhone <=4). On iPhone <=5 then black space pads the top and the bottom of the screens. Nothing has changed with the…
PassKit
  • 12,231
  • 5
  • 57
  • 75
2
votes
1 answer

Xcode beta 7 - Do-While loop SWIFT Error

The following code gives the error Expected 'while' in 'do-while' loop if let path = NSBundle.mainBundle().pathForResource("Chapters", ofType: "txt"){ do { let stringFromFile = try String(contentsOfFile:path, encoding: NSUTF8StringEncoding) …
ScarletEnvy
  • 871
  • 1
  • 7
  • 14