Questions tagged [xcode9.2]

Xcode 9.2 is the release of Xcode Tool. Xcode is the complete developer toolset used to create apps for Apple TV, Apple Watch, iPad, iPhone, and Mac. The Xcode development environment bundles the Instruments analysis tool, Simulator, and the OS frameworks in the form of tvOS SDKs, watchOS SDKs, iOS SDKs, and macOS SDKs.

206 questions
6
votes
6 answers

iOS 11.2 beta released, but not a corresponding Xcode beta

I've just installed iOS 11.2 Beta and downloaded the latest Xcode (which is 9.1 - beta 2. 9B46). But when I try to run the app on the device it says it doesn't have the necessary support files. So how am I supposed to develop with 11.2 beta if…
Gruntcakes
  • 37,738
  • 44
  • 184
  • 378
5
votes
1 answer

Tab Bar is not visible with SWRevealviewcontroller

I am using tab bar with four tab bar item. First tab bar item view is front view of swrevealviewcontrtoller. I attached storyboard view controllers detail image. And output with no tab bar.
5
votes
0 answers

Xcode 9.2 - Can't see "iOS Simulator" within run destination

I'm trying to run my application with a Xcode simulator but I can't select any simulator since my only options are the one showed in this screenshot As per apple guide, I should see the section "iOS Simulator" below "Build Only Device", but within…
5
votes
2 answers

Is IBDesignable broken for AppKit in Xcode 9.2 and Swift 4?

Most questions, and answers related to this, are based on older versions of both Xcode and Swift. Additionally, 90 percent of the questions relate to UIKit and drawing custom controls. I am adding a standard button, that is centered inside a custom…
TimTwoToes
  • 695
  • 5
  • 10
4
votes
0 answers

com.facebook.react.JavaScript (17): EXC_BAD_ACCESS (code=1, address=0xda9bf7c08)

Environment: OS: macOS Sierra 10.12.6 Xcode: Xcode 9.2 Build version 9C40b Node: 6.11.1 npm: 3.10.10 Watchman: 4.9.0 react-native-cli: 2.0.1 Description: When I run my code the app gets crashes in this line context = [JSC_JSContext(contextRef)…
Nijaahnandh
  • 95
  • 1
  • 1
  • 7
4
votes
1 answer

Xcode 9.2 on macOS 10.14 Mojave

To anyone that has upgrade to macOS 10.14 Mojave, can you install and run Xcode 9.2? Can you build a project with it under that configuration? Thank you.
Horatiu
  • 151
  • 2
  • 12
4
votes
3 answers

Framework not found pods

I know this is an old issue. But i produced this issue in a very strange way. Actually I had developed an app installed pods and everything in Deployment Target as 11.2. I took a an .ipa for it and sent it to the client for testing. But the Client…
Chelsea Shawra
  • 1,593
  • 4
  • 22
  • 43
4
votes
1 answer

Do swift tests support generics?

If I try this, it runs tests and success, all green-marked: import XCTest class SomeTestCaseSon: XCTestCase { override func setUp() { super.setUp() } func testblablblblablba() { } } class SomeTestCase: XCTestCase { …
Zaporozhchenko Oleksandr
  • 4,660
  • 3
  • 26
  • 48
4
votes
0 answers

IB displays tvOS tableviewcells with weird frames

I am having weird bugs in IB for tvOS tableviewcells. Since this is my first tvOS project, I don't know if it is intended or not but tableviewcell's content view's width is notably smaller than actual cell. When I try to add any subview(UILabel,…
4
votes
1 answer

Tooltips in NSTextView/NSTextfields

I want to display tooltips over parts of an attributed string, and thought that using an NSToolTipAttributeName attribute on the required ranges would do the trick but I can't get it to work. I am trying in MACOS, Xcode (9.2) NSString *fullString =…
Nomita
  • 51
  • 4
4
votes
2 answers

Images.xcassets: error: ERROR: Each TDDistiller instance can be distilled only one time

Couldn't find proper solution for this. "ERROR: Each TDDistiller instance can be distilled only one time." while compiling the project i've just restart my mac and then my project worked fine for some time. and after that it gives the same error.…
Tahir Pasha
  • 361
  • 3
  • 14
4
votes
4 answers

"No provisioning profile required" in xcode 9.2, while uploading app on appstore

While trying to upload Application on App Store using Xcode 9.2 from system A, it works just fine but while trying the same from system B with the same code and same Xcode version it doesn't allow me to select Provisioning profile on 1st step. It…
Saurabh
  • 22,743
  • 12
  • 84
  • 133
4
votes
1 answer

Use Data from Excel Sheet in Swift Xcode

For my app, I want to be able to import an excel sheet into Xcode and then use swift to programatically extract relevant pieces of data. I want to be able to access the data like a 2d-array. I basically want a 2d array but just one then I can…
Callum Williams
  • 121
  • 2
  • 9
4
votes
2 answers

Xcode not supported for iOS 11.2.1 by Xcode 9.1 needed 9.2

I get the following error. I have Xcode 9.1. I was searching for 9.2 which not available yet at App store. This iPhone 7 Plus (Model 1661, 1784, 1785, 1786) is running iOS 11.2.1 (15C153), which may not be supported by this version of Xcode 9.1 and…
karan
  • 3,319
  • 1
  • 35
  • 44
4
votes
1 answer

How to make Webkit webView with Swift with safe area constraints for iPhone X?

This is the configuration of the storyboard: see the image *Take a look above the link for the image, support from iOS9 to iOS11 Following is the working code solution: import UIKit import WebKit class ViewController: UIViewController,…
1
2
3
13 14