Questions tagged [xcode7-beta2]

Apple's Xcode 7 beta 2 was eased on 6/23/2015

Xcode 7 beta includes SDKs for watchOS 2.0, iOS 9 and OS X version 10.11. To develop apps targeting prior versions of OS X or iOS, see the section “About SDKs and the Simulator” in What's New in Xcode available on https://developer.apple.com or from the Help > What's New in Xcode command when running Xcode.

46 questions
6
votes
6 answers

Unsupported compiler 'com.apple.compilers.llvm.clang.1_0' selected for architecture 'x86_64' on Xcode 7 Beta 2

When I incorporated a popular OAuth2 library in iOS called OAuth2Client to my iOS app which is developed on Xcode 7 Beta 2 and then tried running the simulator, the following error occurred and the simulator didn't launch. Unsupported compiler…
Blaszard
  • 30,954
  • 51
  • 153
  • 233
3
votes
2 answers

XCode 7 crashes when clicking on storyboard and solution by Apple engineers in dev forum does not work

I got XCode 7 beta 2 installed and I do the following steps: create a new XCode project (single view application) add a Watch target to the project select any .storyboard file There is a similar discussion on the apple developer forum but the…
mm24
  • 9,280
  • 12
  • 75
  • 170
2
votes
2 answers

Undefined symbols for architecture i386 using libsqlite3.dylib with FMDB Xcode 7 ios9

I am using Xcode 7 and iOS 9 to create a simple app which saves the data and retrieves it using sqllite3. However I am getting the following error message while Building the app using libsqlite3.dylib library and FMDB retrieved from…
heavyguidence
  • 363
  • 1
  • 8
  • 23
2
votes
1 answer

Xcode7 watchOS2 not debuggable on Simulator

My Watch OS2 app is running on Simulator okay but all the breakpoints I set in awakeWithContext, willActivate ... even when they have run and produced the result, the breakpoints are not hit. In Debug Navigator, all I can see is "Installing and…
Felix
  • 751
  • 5
  • 10
2
votes
1 answer

Swift 2.0 new 'perform changes' of PHPPhotoLibrary won't work

I just downloaded Xcode 7 Beta 2 and am trying to use my knowledge of Swift to make an app that deletes a photo from the user's camera roll. I know how to do this normally with Swift 1.2, but I can't seem to get it in Swift 2.0. I tried searching…
2
votes
1 answer

Compiling C Library for iOS 9 From Command Line, Xcode 7-beta 2

I am having trouble compiling a C library (gmp) for iOS 9 using the latest Xcode 7-beta clang. I am trying to produce bitcode to get all the warnings in Xcode to stop (and I would like to produce these libraries in bitcode). However, I can't even…
stack_tom
  • 950
  • 2
  • 9
  • 18
2
votes
2 answers

XCode7 beta2 and iOS8.4 on device not working

After the update to iOS8.4 on my device XCode7.2b stopped working. My device is not selectable in the list of devices and XCode says "Could not find Developer Disk Image". Any idea how to solve it?
netshark1000
  • 7,245
  • 9
  • 59
  • 116
2
votes
2 answers

"Cannot find an initializer for type 'MKPlaceMark' that accepts an argument list of type

I am getting two errors with this code: "Cannot find an initializer for type 'MKPlacemark' that accepts an argument list of type '(coordinate: CLLocationCoordinate2D, addressDictionary: [NSString : String])' and "Cannot invoke…
Jack Berstrem
  • 535
  • 1
  • 5
  • 22
1
vote
0 answers

Framework Error No such module found in Xcode 7 beta 2

I am facing the problem since Xcode 7 beta 2 but it was running perfectly in Xcode 6.4. I have my Frameworks folder in the project and it is in the project directory. This Frameworks folder contains all the frameworks needed, but when i import this…
Parth Adroja
  • 13,198
  • 5
  • 37
  • 71
1
vote
1 answer

Animation code Error: Type of expression is ambiguous without more context

I have typed some simple animation code in Xcode 7 beta 2- UIView.animateWithDuration( 0.5, delay: 1, options: nil, animations: ({ self.W.frame = CGRect(x: 107, y: 268, width: 30, height: 33) self.nameLabel.alpha = 0 …
Krish Wadhwana
  • 1,544
  • 2
  • 12
  • 24
1
vote
1 answer

Tab Bar Controller Will Not Display Tabs Xcode 7

For some reason in Xcode 7 the tab bar controller won't default with displayed tab icons. I'd like to determine if this is an issue with my default settings, or if this is a change in Xcode 7 from Xcode 6 in which I'll have to manually add the tab…
1
vote
0 answers

Parse API functions autocomplete is not working in Xcode 7.0

I am using Xcode 7.0 and integrated latest Parse API. When I start coding in the Xcode editor, it is not suggesting the available functions in the respective object. For example: var query = PFUser.query() when i type query, it is not showing…
sfbayman
  • 1,067
  • 2
  • 9
  • 22
1
vote
0 answers

Library not loaded exception

I have been developing my application targeting iOS 9 for the last month or so using the simulator only. The project compiles and runs on the simulator without any issues. Today I upgraded my phone to iOS 9 Beta 2 and deployed the app to it for the…
Johnathon Sullinger
  • 7,097
  • 5
  • 37
  • 102
1
vote
1 answer

Archive submission to App Store failed in Xcode 7.0 for Test Flight

I am submitting a prerelease app to the App Store for internal testing with Test Flight in Xcode 7.0 beta 2 (7A121l). I was able to submit the archive with zero problems multiple times but today I am seeing the following error message. Xcode version…
Evgenii
  • 36,389
  • 27
  • 134
  • 170
1
vote
1 answer

Why does animateWithDuration fade out but not in?

I'm working on a portion of my application where I animate messages based on a users progress through time. So, essentially timed out messages. I have a counter and two labels: var timer = NSTimer() var timerCount = 0 @IBOutlet weak var bannerLabel:…
Dan Beaulieu
  • 19,406
  • 19
  • 101
  • 135