Xcode 9.3 is the stable release of Xcode. 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.3]
135 questions
0
votes
1 answer
iOS swift 4 sets a default boolean to complicated static variables?
Hi I'm working on an app that is connected to a Web API and contains a local Database (Realm).
I have a User class which is a Realm Object subclass and keeps the user information such as username, password, accessToken and etc. It has also a static…

AMINEDGE
- 439
- 3
- 12
0
votes
0 answers
Code signing is required for product type 'Application' in SDK 'iOS 14.1'
I have finish my IOS APP and tested it out on my computer all worked fine and no Problem with it but am facing the below issue when i try to build the application to Archive.
i have tried many option like
"Automatically manage signing" and…

artiman
- 1
- 2
0
votes
1 answer
Image not showing on iPad
I have created an iOS APP for iPad and my application is using XIB.
On XIB I have put a UIImageView and UIButtonview and set the image on both of them.
The image is showing on XIB but when I am testing it on simulator then both of these views is not…

hitesh landge
- 362
- 4
- 14
0
votes
0 answers
Xcode 9.3, NSLog not printing but print works
In my app, all logs of the Swift code (print) is printing properly, but in the Objective c log (NSLog) not printing.
NB: I've tried this one
iOS 10 doesn't print NSLogs

TKumar
- 818
- 2
- 10
- 35
0
votes
1 answer
Header view not getting re-arranged after scrolling in UICollectionView
I have a UICollectionView which expands on clicking a cell and once the screen fills it becomes scrollable.
Now when I scroll down I need my header view to scroll down with it and for that I've implemented the logic in the…

sonu
- 41
- 5
0
votes
1 answer
Button that works like home button on iPhone
Is there any way to create a button in Swift that acts in the same way as the iPhone home button? I am looking for a way to do this, whether programmatically or by using Xcode's drag and drop feature for adding buttons.

G Kofman
- 13
- 4
0
votes
2 answers
storyboard refresh issue Xcode
I have an issue of storyboard refresh all views, when I change constraints it cannot be change in storyboard but change in simulator and device.
But when I reopen my project then it refresh.I tried below step but nothing happened
Select…

V D Purohit
- 1,179
- 1
- 10
- 23
0
votes
0 answers
Set NSArray as a property of custom class
I have created one sub class / custom class of UIView
Here is MultiColorView.h file.
#import
@interface MultiColorView : UIView
@property (strong, nonatomic) NSArray *colors; // default is nil
@end
Here is MultiColorView.m…

VRAwesome
- 4,721
- 5
- 27
- 52
0
votes
1 answer
command failed due to signal segmentation fault 11 Xcode 9 - iOS simulator
My code is compiling on Xcode 9.3 with swift 4.1,
I'm able to run my code on the device, but while trying to run this code on the simulator, it gives me following error,
I tried so many solutions available for this error, but none of them had…

Pramod More
- 1,220
- 2
- 22
- 51
0
votes
1 answer
Deleting swipe-able TableView Cells using Core Data
So, I can add tasks and persist those tasks in my app. Now what I would like to do is be able to delete tasks and persist what I deleted. I am using the swipeable cell cocoa pod in order to allow the user to swipe to the left and delete items.…

Joshua Sorial
- 11
- 4
0
votes
1 answer
Swift pages: Load remote image
I'm trying to load a remote image with the following code:
//: 
But when I switch to "Show rendered markup" I only see the "Xcode icon"…

user2924482
- 8,380
- 23
- 89
- 173
0
votes
1 answer
Why does Xcode autocomplete always put my custom code snippets above actual completions?
I am using some personal Xcode snippets for shortcuts for like dispatching on main queue, or a @synchronized code. They have never interfered with Xcode's autocomplete function with regular methods.
Some time ago I've formatted my Mac, installed…

Can Poyrazoğlu
- 33,241
- 48
- 191
- 389
0
votes
1 answer
Auto Layout Localization warnings showing in Issue Navigator but cannot see them in Autolayout pane in Storyboard (Xcode 9.3)
I had a project in Swift 3.2 that I converted to swift 4 in Xcode 9.3. After the successful migration, I got few Auto Layout Localization warnings that I fixed. My issue is that though I keep seeing such warnings in Issue Navigator and Auto Layout…

sandpat
- 1,478
- 12
- 30
0
votes
1 answer
Save data in specific user id iOS - Alamofire, Json
I have a job application app that when a user registers through a registration page, it is automatically generating a unique user_id for each user. This app also supports multiple different data for each user (e.g education details, experience etc)…

AzeTech
- 623
- 11
- 21
0
votes
1 answer
Xcode 9.3 Launchscreen.storyboard looses alpha channel in UIImageView PNG when executing
I have a PNG file in the Xcode project navigator. It has an alpha channel (rounded corners icon style).
I have initialised a UIImageView in the Launchscreen.storyboard with this PNG file. See screenshot.
When I run the Simulator the alpha channel…

Hugo F
- 620
- 6
- 11