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.
Questions tagged [xcode9.2]
206 questions
0
votes
1 answer
How to add CorePlot release branch 2.3 to current build - CocoaPods assistance
I just updated my XCode version to 9.2 in order to demo a BLE+iOS app on an iOS 11 phone.
I tried to build to with the new iOS, and I received a bunch of "Implicit conversion from nullable pointer 'NSNumber * ......'
After reading about these common…

Anthony_b
- 23
- 6
0
votes
2 answers
SIGABRT using NSDictionary for text and shadow attributes
I'm attempting to build a simple app in Objective C, utilizing an attributes Dictionary in my AppDelegate module to allow me to customize the look of various navigation items of my story layout.
The code builds fine with no errors but as it deploys…

Art2VR
- 3
- 6
0
votes
1 answer
how to generate Coverage.profdata on Xcode
first of all thank you in advance for helping me figure this out.
I recently try using slather to produce a code coverage report for my xcode project, but when i execute slather it fail with error below
Are you sure your project is generating…

auyotoc
- 1
- 1
- 2
0
votes
1 answer
Hiding Bottom Bar When Pushed - Animation freezing on Iphone X
I've encountered an issue that I cannot figure out for the life of me. The issue is only happening on the iPhone X. I've added a little video since its difficult to explain exactly whats happening.
I've also added a screenshot of my storyboard so…

dranieri
- 199
- 1
- 7
0
votes
0 answers
Add Repository option is missing in Xcode 9.2 in Accounts tab in Xcode Preferences
I am trying to add my project in svn, previously in Accounts tab of Xcode Preferences, add respository option will be there but now i am unable to find it, instead there are someother git options is there, i checked this but its not working.
Now i…

R. Mohan
- 2,182
- 17
- 30
0
votes
1 answer
Hiding an UIView takes a long time
Good day ...!
I want to simply hide an UIView (called "secondView") by pressing a button inside it.
The problem I'm running into is that when I press the button, it takes a long time (about 20 seconds) to perform the method and hide its superview,…

Morteza J.M.
- 1
- 2
0
votes
1 answer
How to delete Fetch Index Element in Xcode
In Xcode 9.2 in core data model (under .xcdatamodeld file) a Fetch Index Element can be added under an entity. But how can it be deleted?
I created one by mistake and can't delete. That is why Xcode gives me a warning: "A fetch index should have one…

Jaiden Ryder
- 25
- 6
0
votes
0 answers
UI Elements jump way off the current view controller after adding to stack view (iOS)
What I want to discuss here is the issues that I have encountered using stack views.
Problem:
Have:
Image lets say 200 x 300
UILabel - as a header
UILabel - as a body text
UIButton - background image 150 x 50
the UILabel labels jump way off the…

Frank Decker
- 11
- 2
0
votes
0 answers
Not able to push or pop navigation in Swift4 Xcode 9.2
let homepageViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "HomepageViewController") as! HomepageViewController
self.navigationController?.popViewController( animated: true)
I have added this code…

Sachu_
- 9
- 3
0
votes
0 answers
Navigation bar item automatically changes its height and position in storyboard
I have a project which was build in Xcode 8.2 and now when I run it using Xcode 9.2. I am facing problems with the custom navigation title and bar buttons in the view controllers. In my storyboard I have a View Controller and on its Navigation bar I…

AGK
- 1
- 2
0
votes
1 answer
iOS - denied code sign permissions, now can't build
I downloaded an SDK (for Mavick drones) and built the sample app for the simulator - everything was fine! However, when I built to run on my iPhone, it spawned a number of keychain request windows for giving permissions to code signing. There seemed…

GoatInTheMachine
- 3,583
- 3
- 25
- 35
0
votes
3 answers
Avoiding implicit unwrap variable
I have a question for you guys. I'm trying to avoid do implicit unwrap variables but I haven't figure out how to do it. Here is my example with implicit unwrap
class MyView : UIView {
@IBOutlet var button : UIButton!
var buttonOriginalWidth…

user2924482
- 8,380
- 23
- 89
- 173
0
votes
1 answer
Xcode change to default scope
How to revert back to default project scope after using Custom Scopes in Xcode.
I tried below approach,
Selected Scope Option below search field
Tapped on root file, which is .xcodeproject.
This searches text inside .xcodeproject. I was…

Saif
- 2,678
- 2
- 22
- 38
0
votes
1 answer
Interoperability among Libraries/Frameworks
I’m trying to define a placeholder for UITextView, but unfortunately unlike UITextField it doesn’t have that attribute. In order to speed up my development process I’ve made some search and found a library…
0
votes
0 answers
Navigation button grayed out after returning via back button (Xcode 9.2)
In Xcode 9.2, I've set up a simple test app with two View controllers in a Navigation Controller. The first view, Home, has a navbar button ("Next") that has a "show" segue to the Away view. The Away view has a back button in the navbar to return to…

Nick Ramsay
- 1
- 2