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
222
votes
14 answers

Delay/Wait in a test case of Xcode UI testing

I am trying to write a test case using the new UI Testing available in Xcode 7 beta 2. The App has a login screen where it makes a call to the server to login. There is a delay associated with this as it is an asynchronous operation. Is there a way…
Tejas HS
  • 2,565
  • 2
  • 16
  • 13
57
votes
6 answers

iOS library to BitCode

I recently downloaded Xcode 7 beta, and Xcode complains about some of my C libraries not being compiled into BitCode. How would I go about telling Clang to produce BitCode that is compatible with iOS? I've seen similar answers on stackoverflow, but…
stack_tom
  • 950
  • 2
  • 9
  • 18
47
votes
3 answers

Swift: Extra argument 'error' in call

I'm currently developing my first iOS app using Swift 2.0 and Xcode Beta 2. It reads an external JSON and generates a list in a table view with the data. However, I'm getting a strange little error that I can't seem to fix: Extra argument 'error'…
kaanmijo
  • 713
  • 1
  • 5
  • 14
40
votes
6 answers

Swift debugger does not show variable values when importing ObjC framework

When I create a new OS X "Game" project with Sprite Kit, and set a breakpoint anywhere I can see the variable values just fine: Then I change the code to import my own framework (TilemapKit) which is a pure Objective-C framework: import…
CodeSmile
  • 64,284
  • 20
  • 132
  • 217
32
votes
5 answers

How can I run the iOS 7.1 Simulator in Xcode 7.0 beta 2?

I have installed latest Xcode 7 beta 2 version, when I am trying to run the application in iOS 7.1 Simulator its giving this error message: The iOS 7.1 simulator runtime is not available. Unable to open liblaunch_sim.dylib. Try reinstalling Xcode…
IOS Rocks
  • 2,127
  • 2
  • 21
  • 24
21
votes
6 answers

ld: framework not found Parse Xcode 7 beta

I succeed to install and use Parse framework with my new project, but I can't with a "template project". The template is just a Slide Menu from Appcoda You can download the project here. I have this error : ld: framework not found Parse clang:…
papay0
  • 1,311
  • 1
  • 12
  • 25
20
votes
5 answers

Swift 2 CLLocationManager Error updating

i updated Xcode 6 to Xcode 7 beta with Swift 2. I get this error and i can't find out how to fix it, please help me. Thanks. This is my code : func locationManager(manager: CLLocationManager, didUpdateLocations locations: [AnyObject]) { let…
markutus
  • 603
  • 2
  • 8
  • 12
17
votes
3 answers

Xcode can't see objects added via Cocoapods

I have a podfile defined with the following pods. platform :ios, '8.0' use_frameworks! target 'LifeStream' do pod 'SSKeychain' pod 'LiveSDK' pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :branch => 'swift-2.0' end I…
Johnathon Sullinger
  • 7,097
  • 5
  • 37
  • 102
14
votes
2 answers

"no such module" on Xcode 7 beta 2

I saw this question, but I am still unable to import a framework and use it inside Xcode 7 beta 2 (7A121l). So currently I am trying to use Result, via carthage. After adding it to Build Phases/ Link Binary with Binaries and Embed Frameworks I am…
Rui Peres
  • 25,741
  • 9
  • 87
  • 137
11
votes
4 answers

Xcode 7 beta 2: LaunchScreen.storyboard could not open document

I am getting this error on two different Macs (iMac and Mac Book pro). No idea why people can't reproduce it but I need some help. I am running Xcode 7 beta 2 (23 June '15) on a Mac running OS X Yosemite 10.10.4. Can't even compile and run my…
mm24
  • 9,280
  • 12
  • 75
  • 170
10
votes
1 answer

Error: Use of unresolved identifier 'kCGBlendModeMultiply'

I recently updated to Xcode 7, beta 3. And I've run into some issues, I can't seem to find any questions for on SO. When I run my application, i get 3 errors: Use of unresolved identifier 'kCGBlendModeMultiply' Use of unresolved identifier…
MLyck
  • 4,959
  • 13
  • 43
  • 74
9
votes
1 answer

Upgrading existing watchOS 1 project to watchOS 2

I don't want to keep and support watchOS 1, instead, I want to upgrade my existing watchOS 1 project to watchOS 2 without recreating an Interface.Storyboard and etc. Apple Doc isn't very specific to resolve this case: watchOS 2 Transition…
Kevin
  • 828
  • 11
  • 14
7
votes
1 answer

Xcode 7 beta - font rendering crash

Apple have kindly changed the fonts and font size in iOS 9. I have noticed many of my fixed sized labels are now being truncated(!) which is not good. I am also getting this crash: The error can be continued and the app will run normally, but…
Chris
  • 2,727
  • 2
  • 27
  • 28
6
votes
3 answers

Xcode 7 - Error trying to integrate Parse using CocoaPods (Swift)

I'm using Xcode 7 beta, and I have been trying to integrate Parse iOS SDK using Cocoapods. I already created the bridging-header.h, I alreade imported Parse #import . I already called Parse in my AppDelegate.swift. The error happends…
eMdOS
  • 1,693
  • 18
  • 23
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
1
2 3 4