Questions tagged [xcode8-beta6]

Xcode 8 beta 6 was a pre-release version of Xcode 8 released on August 15, 2016.

68 questions
3
votes
1 answer

How do i get Xcode 8.0 to tell me exactly which constraint is breaking (or how to debug xcode ?)

I am trying to figure out how to reveal exactly which constraints are breaking in my code.However, xcode 8 only returns .Any idea how to show these objects?
stone
  • 2,164
  • 15
  • 25
3
votes
1 answer

Xcode 8 simulator ios 8 image get distorted

I just get this bug,some images on the iOS 8 simulator get distorted.iOS9,and iOS10 don't have this bug. I'm not sure that this is a Xcode 8 bug,or this is my problem.
Randall Wang
  • 927
  • 3
  • 9
  • 24
2
votes
2 answers

Can I use old frameworks when migrating to Swift 3?

I'm currently migrating my project to Swift3 as I know that there is one bug I have under iOS 10 that needs to be fixed. So I installed iOS 10 on one of my devices. Now I can't run my app on the device, getting the 'Could not find developer disk…
fancy
  • 2,115
  • 1
  • 20
  • 39
2
votes
0 answers

With var, Swift says it cannot pass immutable value as inout argument

I can't decipher this error message. This code compiles and runs struct A { var x: Int } var a = A(x: 123) let result = withUnsafePointer(to: &a) { print("ptr is \($0)") // return 1 } print("result is \(result)") But, if you uncomment…
Rob N
  • 11,371
  • 11
  • 72
  • 126
2
votes
1 answer

Workaround for UISlider bug introduced in XCode 8 Beta 6?

I'm migrating some code to XCode 8 Beta 6, that was working pretty well until XCode 8 Beta 1 inclusively (it was migrated previously from 7.3). Everything is working, except for a new strange behavior with the sliders when using a custom thumb image…
nbloqs
  • 2,954
  • 1
  • 24
  • 43
2
votes
1 answer

Xcode 8 beta 6 UIActivityItemProvider error with @objc compatibility

Trying to implement a UIActivityItemProvider in Xcode 8 beta 6. After changing this method from a String parameter to UIActivityType, now get this error: Method cannot be an @objc override because the type of the parameter 2 cannot be represented…
Jason Hocker
  • 6,585
  • 9
  • 39
  • 76
2
votes
1 answer

Swift 3 (Xcode 8 beta 6) localizedStringWithFormat

Is there a better way to get a localized format and substitute strings in with Xcode 8 Swift 3? Do I need to use NSString, and cast back and forth between NSString and String? let localizedDue =…
Jason Hocker
  • 6,585
  • 9
  • 39
  • 76
2
votes
3 answers

iOS 10 Beta 7 sdk not supported in Xcode 8 Beta 6

I just updated iOS 10 beta 7 which is not readable in xcode 8 beta 6 and I can't find any update for xcode beta. It is throwing "Unable to read from device" in Organizer
ramgandhi
  • 587
  • 5
  • 21
2
votes
1 answer

UIActivityType – Property cannot be an @objc override because its type cannot be represented in Objective-C

While updating to Xcode 8 Beta 6, from what I saw a new type got introduced: UIActivityType So I tried to do somewhere like this in my UIActivity custom class: class FooActivity: UIActivity { func retrieveActivityType() -> String { …
gabuchan
  • 695
  • 1
  • 6
  • 16
2
votes
1 answer

Ionic 1.3 - iOS 10 beta 6 not playing mp4 videos inline

I am trying to make videos play inline on iOS 10 but after an upgrade from iOS beta 4 to beta 6 this stopped working. On my config.xml I have added these 2 lines
Michel Arteta
  • 1,346
  • 2
  • 11
  • 24
2
votes
1 answer

Xcode8 beta 6 - URLSession with completionHandler argument not working

I can't seem to use this method in my code at all after changing from beta 5 til beta 6. open func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Swift.Void) -> URLSessionDataTask My code: …
Bjarte
  • 1,925
  • 2
  • 26
  • 33
1
vote
1 answer

Swift 3.1 - NSSuperScript in NSAttributedString not working as expected

The application I am working on encountered an issue when testing with iOS 10.3 Simulator via XCode 8.3 beta 2, where the superscript in AttributedString displayed on the same line with normal text. For iOS 10.2.x and below, it is displaying…
1
vote
0 answers

Attempt to present TabBarController on FBSDKContainerViewController whose view in not in the window hierarchy

I'm using Facebook login in my app and I'm not able to go to next view after login completed. i.e. TabBarController its shows an above stated error. I am doing custom login from a button. Here is my code of how I am doing login. @IBAction func…
1
vote
0 answers

Swift 3 CommandLine.arguments fails

In a playground, when I write: let arguments = CommandLine.arguments I get an error: Playground execution aborted: error: Execution was interrupted, reason: EXC_BAD_ACCESS (code=1, address=0x8). The process has been left at the point where it was…
stonecanyon
  • 89
  • 1
  • 6
1
vote
1 answer

Getting issue when making build for iOS 10 sticker pack in Xcode 8 beta

I am working on iOS 10 new sticker feature, and for this I am using Xcode 8 beta version and I drag and drop all stickers and app icons and when I'm trying to archive the app, Xcode failed with the following error: So I checked the Build Settings -…
ajeet sharma
  • 633
  • 8
  • 30