Questions tagged [xcode7-beta4]

Apple's Xcode 7 beta 4 is a prerelease version of Xcode 7 supporting development of iOS, Mac OS X and watchOS apps. It was released on July 21, 2015.

58 questions
63
votes
6 answers

Xcode 7 warnings: object file was built for newer iOS version than being linked

I recently integrated Google Cloud Messaging into an app targeting iOS 7 and iOS 8. Just grabbed Xcode 7 beta 4 to get started on iOS 9 support, and now I'm getting an error from the linker: ld: warning: object file…
Jony Thrive
  • 931
  • 1
  • 7
  • 15
55
votes
9 answers

How to prevent a Command Line Tool from exiting before asynchronous operation completes

In a swift 2 command line tool (main.swift), I have the following: import Foundation print("yay") var request = HTTPTask() request.GET("http://www.stackoverflow.com", parameters: nil, completionHandler: {(response: HTTPResponse) in if let err =…
codecowboy
  • 9,835
  • 18
  • 79
  • 134
40
votes
10 answers

XCode 7. iOS simulators missing and not installable

Can't see any iOS 9.0 simulators. In previous Xcode 7 beta 3 all was OK. Can't install iOS 8.3 simulator. Also I can't add any simulator from 'Organizer'. By pressing "Create" nothing happened. Each time when I'm trying to download iOS…
Alexey Bondarchuk
  • 2,002
  • 2
  • 20
  • 22
35
votes
6 answers

This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird crashes

I get this log in the console when I am running my application in is simulator. Haven't seen this in iOS 8. I am not quite sure whats causing this. Has anyone else come across the same issue and if so how was it fixed? or is there any help anyone…
Shabarinath Pabba
  • 1,359
  • 2
  • 13
  • 22
35
votes
4 answers

XCode 7: Launch screens may not set custom classnames

I created a simple application using Xcode 7 Beta 2. The application simply contains class MyAppDelegate, MyViewController, MyMain.storyBoard and MyLaunchScreen.storyboard. After recompiling the application with Xcode 7 Beta 4 the error "Launch…
Awsed
  • 9,094
  • 5
  • 26
  • 25
32
votes
8 answers

Xcode7 | Xcode UI Tests | How to handle location service alert?

I am writing UI Test Cases for one one of my app using the XCUIApplication, XCUIElement and XCUIElementQuery introduced in Xcode7/iOS 9. I have hit a road block. One of the screens in test case requires iOS's Location Services. As expected the user…
Taha Samad
  • 1,135
  • 1
  • 9
  • 22
17
votes
4 answers

Xcode 7 linker issue with Google Maps SDK

I just downloaded Xcode 7 beta 4 and am trying to build my Swift 2.0 application but I am getting the following error which I can't figure out the solution to: ld: warning: -weak_framework is treated as -framework when used with -bitcode_bundle…
KPath001
  • 870
  • 5
  • 18
11
votes
5 answers

How to set background color for UIPageViewController?

How to set color for background view in UIPageViewController? Is it possible to do this in Storyboard?
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
10
votes
12 answers

No such module 'FBSDKCoreKit' XCODE 7.4

I am trying to add the Facebook login feature using FBSDKCoreKit and FBSDKLogin. When I try to import these two framework to my AppDelegate file, it shows error which is "No such module 'FBSDKCoreKit'". I changed Allow Non-modular Includes In…
sekaisan
  • 441
  • 3
  • 8
  • 20
10
votes
2 answers

Unable to verify iPhone Developer Apps

I am using Xcode 7 beta 4 and iOS 9. I'm having trouble in launching my app on my device using the new feature that Xcode 7 has, that allows us to try applications without having an Apple Developer Program Here's what I get from Profile when I try…
Michel Kansou
  • 2,851
  • 4
  • 13
  • 22
8
votes
2 answers

Xcode 7 beta 4: MKMapKit hangs the app

I'm seeing a strange problem with Xcode 7 beta 4 and the iOS 9 simulator. Any app that uses a map hangs when trying to load the view containing the map. It does not throw an exception. If I remove the map, it works. This appears to have a 100%…
TotoroTotoro
  • 17,524
  • 4
  • 45
  • 76
7
votes
2 answers

CocoaPods v0.39.0 errors with Facebook SDK v4.7

Old Cocoapods Configuration I am using Xcode 7 Beta 4. Initially I was using Cocoapods version 0.38.2 and when I ran pod install --verbose in Terminal it said it downloaded dependencies for Bolts, FBSDKCoreKit, FBSDKLoginKit, FBSDKShareKit,…
Luke Schoen
  • 4,129
  • 2
  • 27
  • 25
7
votes
2 answers

How to call SecItemCopyMatching in Xcode 7 beta 4?

In previous versions of Xcode 6 and 7 with Swift, this syntax would work: var secureItemValue: Unmanaged? let statusCode: OSStatus = SecItemCopyMatching(keychainItemQuery, &secureItemValue) if statusCode == errSecSuccess …
Daniel
  • 8,794
  • 4
  • 48
  • 71
5
votes
1 answer

Unable to "Upload to App Store" Xcode 7 beta 4, watchOS 2

I have to upload my app on the App Store in order to do some internal testing with Test Flight. Even if I am still using beta version, this is possible according to this question Is it possible to upload an iOS app to App Store for internal testing…
Nisba
  • 3,210
  • 2
  • 27
  • 46
5
votes
1 answer

What is a SwiftShims module?

I'm attempting to transform a Swift v1.2 project into a Swift v2.0 project via Xcode 7.0. I got this during the build: Swift had fatal errors constructing the ast context for this module: missing required module 'SwiftShims' Debug info from…
Frederick C. Lee
  • 9,019
  • 17
  • 64
  • 105
1
2 3 4