Questions tagged [xcode9]

This tag should only be used for questions specific to the usage and features of Xcode 9. Do not use this tag just because you are using Xcode to develop your app. General Xcode questions should use the non-version specific xcode tag. Use tags appropriate for the OS such as ios or macos.

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.

1766 questions
0
votes
0 answers

Cordova - Xcode - Build success but Plugin not found

we are using a worklflow where in we need to deploy the cordova app directly to the device. After having include correctly a provisioning profile, build pass all test but the app in the ipad screen still remain black, the problem? Plugin are not…
Simone Campagna
  • 1,130
  • 1
  • 10
  • 19
0
votes
0 answers

NSException with a confusing backtrace

I am stuck on a peculiar NSException. Essentially, I have a table view cell with a button in it. When I click the button, the app crashes. The cause? libc++abi.dylib: terminating with uncaught exception of type NSException This, of course, is a…
mlecoz
  • 409
  • 4
  • 17
0
votes
1 answer

SCNAction.rotateTo starts spinning when written programmatically using ARKit - Scenekit

I am using ARKit - Scenekit to create a AR based app. I am able to successfully place the 3D model. On user tap i am trying to rotate a particular node by -120 degrees using rotateTo method. This should ideally cause smooth rotate animation. But…
Vidhya Sri
  • 1,773
  • 1
  • 17
  • 46
0
votes
1 answer

Xcode Application Loader upload error

When I upload my app to the App Store, an error occurred. So I tried uploading it with the Application Loader. I got the same error again. My XCode version is Version 9.1 (9B55). Here is the detailed error message: Does anyone know how to solve it?
童玉龙
  • 11
  • 2
0
votes
4 answers

App developed in Xcode for native iOS

We have our native iOS app developed in Xcode and now software developer is saying that we should upgrade our code to Xcode 9 as we may face issue with the new release on the App Store if we continue using Xcode for development. I would like to know…
Learning
  • 19,469
  • 39
  • 180
  • 373
0
votes
1 answer

Custom Keyboard for iPhone X inputView.frame size

I have my custom keyboard that's fine with all iPhones except iPhone X. In my custom keyboard i create UI with XIB file and i am not using Autolayout. Here is how i add my keyboard view in Keyboard Extension. self.myKeyX.frame =…
Bling
  • 21
  • 4
0
votes
1 answer

Why Am I Not Able To Embed My Custom Framework?

I have a very simple framework project, MyFramework, that builds successfully. The framework defines a single, global function, myFunction. The framework also defines 2 global variables: MyFrameworkVersionNumber and MyFrameworkVersionString (These 2…
Verticon
  • 2,419
  • 16
  • 34
0
votes
2 answers

How to get access to uiTableViewCell which are not selected in Swift 3?

So basically I know that I can get all the selected cells using "selectedIndexPathRows". But I want to change behavior of cells which are not selected. Also I want to know which cells are not selected on didSelect or didDeselect . Basically, what I…
Fatin Wasta
  • 424
  • 1
  • 6
  • 20
0
votes
2 answers

didSelectRowAtIndexPath doesn't work on xCode 9

So I have to work on this really big project, it's still on objective C. I was just ask to make a really small change (hide a button) so I did that and it's building fine and everything looks normal but then all of the tableView in the project won't…
Neodigi
  • 193
  • 4
  • 19
0
votes
1 answer

Verify final result code for completed build operation

All, I am using Jenkins for CL, Recently we updated to Xcode 9, from then we are getting below issue. How can we resolve it, In another machine by reducing the folder structure it worked, How can we solve it without changing the folder structure?…
kiri
  • 1,977
  • 5
  • 27
  • 55
0
votes
1 answer

Xcode server - TestSummaries.plist

we are trying to get TestSummaries.plist. Previously, it was inside xcodebuild_result.bundle.zip as describe in the blog Now in Xcode 9, I couldn't find it. Thanks in advance!
Ted
  • 22,696
  • 11
  • 95
  • 109
0
votes
0 answers

Navigation bar breaks in Tableview / detail view inside Tab bar controller

This is a bit of a tricky one to explain here so I'm hoping the screenshot of the storyboard of the app I'm trying to build helps to clarify what I'm trying to do. Basically the apps starts with a nav controller and table view, when you click on a…
Rick Curran
  • 121
  • 4
0
votes
0 answers

How can get a signing certificate to be detected by xcodebuild command line?

I am trying set up Jenkins to sign my app command line using xcodebuild command. I get a Code Signing Error complaining: Provisioning profile "XC iOS: xxxxx" doesn't include signing certificate "iPhone Distribution: Team Name…
TheWaterProgrammer
  • 7,055
  • 12
  • 70
  • 159
0
votes
1 answer

How can I see commit history timestamps in Xcode 9?

Currently I can only see the date that the commit was made on, but in Xcode 8 it included the actual time of commit. When you make multiple commits a day it is useful to see the time stamp. Is there a way to turn on timestamps for the new Source…
Jake G
  • 1,185
  • 9
  • 19
0
votes
2 answers

How to run automated XCUITests in Xcode for iOS via .ipa

I am facing an issue which ultimately results in following error - The bundle “$(PRODUCT_NAME)” couldn’t be loaded because its executable couldn’t be located. Try reinstalling the bundle. Error Domain=IDETestOperationsObserverErrorDomain Code=6…