Only use this tag if your question is about a specific change introduced in `Swift 3.2`. For generic Swift questions, use the [swift] tag.
Questions tagged [swift3.2]
79 questions
-2
votes
1 answer
Need to create an array of sets swift
I'm brand new to Swift, and it's been awhile since I've done any programming at all so please forgive me. I need some help on how to create an empty array that would contain a set of numbers.
What I'm trying to do is read two sets of numbers in…

Mark Allen
- 1
- 1
-2
votes
1 answer
Call C function in swift3 fork(), system()
How to call fork() and system() in swift?
var pid = fork() // Error: Missing argument for parameter #1 in call
var r = system() //Error: fork()' is unavailable: Please use threads or posix_spawn*()
Tried
var param: Int8
var s = system(¶m)
as…

user1101733
- 258
- 2
- 14
-3
votes
1 answer
Status bar visibility is not unified on iOS
I am migrating an iOS app to XCode9 from 8. I'm not sure what's causing but it seems like either Swift 3.2/Xcode 9 is behaving badly.
So this app I'm developing has Status bar on all the view controllers and so has it been, but after migrating this…

kela
- 1
- 1
-4
votes
1 answer
Best practices for swift conversion from 2.3 to 3.x
I am need to convert a swift 2.3 project into swift 3.x. Around 12 frameworks are added to the project via Cocoapods. I just wanted to know best practices to follow for external libraries added via Pods.

Kannan Prasad
- 1,796
- 22
- 27