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
0
votes
1 answer
When I push view controller its take time to navigate
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "AbcViewController") as! AbcViewController
self.navigationController?.pushViewController(vc, animated: true)

Avadh Bambhroliya
- 21
- 4
0
votes
2 answers
how to use modifying for-loop in Swift 3.2?
I have a converted for-loop in Swift 3.2 that looks similar to this:
for var i in 0.. len && ((currentIndex + length2323) < length))
{
i = i - 1
}
}
But, It doesn't work…

New-Learner
- 229
- 1
- 3
- 15
0
votes
1 answer
Switch between WebView and NativeView with Swift
Problem Statement:
I have an a native app which has a G+ single sign-on.
When I click that button, it displays an alert - "application wants to use google.com to sign-in" along with 2 buttons "Continue" and "Cancel"
When I press "Continue" on the…

Malav Parekh
- 13
- 4
0
votes
2 answers
How to change Status Bar Style of PushRow View Controller?
I have got the answer if I am using latest pod of Eureka which supports swift 4.
https://github.com/xmartlabs/Eureka/issues/1355#issuecomment-353334726
But I am on branch swift 3.2
When I use the solution given in the above link
class…

kbokdia
- 439
- 5
- 11
0
votes
1 answer
'[NSObject]' is not convertible to '[AnyObject]'
I'm trying to create tableview where the arrays are being sorted and put in there respective sections. I followed this tutorial: http://www.yudiz.com/creating-tableview-with-section-indexes/
I managed to make the first one work where the tableview…

rendell
- 917
- 2
- 9
- 26
0
votes
1 answer
Unable to resolve identifier socketmanager with (swift3 xcode9 iOS)
I am trying to implement Socket.IO-Client-Swift using this socket.io library. But due to this error Unable to resolve identifier socketmanager I am unable to implement this library. I am using xcode 9 and swift 3.2.2.
let manager =…

jazzbpn
- 6,441
- 16
- 63
- 99
0
votes
2 answers
UIView got rendered before data from API returned using SwiftyJSON and Alamofire
I want to fetch data using API request.The data is fetch using SwiftyJson and Alamofire. The problem is that the data is fetched but view gets loaded before the values are fetched.How can I Solve the problem?My code is as below:
func fetchData(){
…

Geethanjali Reddy
- 213
- 3
- 17
0
votes
1 answer
Call delegate without segues or actually adding the view on storyboard
Im new to swift and I'm confused how to pass values from container view to parent view. I tried the delegate method but I don't know how to call the delegate method inside the parent.It doesn't seem to work, the app just terminates.
The following…

Geethanjali Reddy
- 213
- 3
- 17
0
votes
0 answers
didReceiveRemoteNotification:fetchCompletionHandler not being called when app(iOS 11.0.2) is in background and not connected to Xcode 9.0
When app is in background and connected to Xcode, everything works fine but when i unplug any iOS device and run the app, move to background and send remote notification, didReceiveRemoteNotification:fetchCompletionHandler not being called.
Here is…

Arun
- 483
- 6
- 20
0
votes
1 answer
Determinant Progress Indicator
I’m trying to create a window that displays a determinant progress indicator. This indicator would start loading and once done, fade into the background... revealing the regular macOS storyboard template. I’m not asking for someone to write this…

Forrest Ager
- 1
- 1
0
votes
1 answer
Why can’t you use a generic Self reference in a Swift 3.2/4 KeyPath typealias?
Why can’t you use a generic Self reference in a Swift 3.2/4 KeyPath typealias?
Example: the below code compiles unless you uncomment the line marked // B. Why? From what I can reason, the line marked // B should mean exactly the same thing as the…

CommaToast
- 11,370
- 7
- 54
- 69
0
votes
1 answer
How to integrate instamojo in Swift 3.2 and above
I have integrated instamojo in Xcode 8.2.1 ,swift 3 . It works fine, But when I came to run Xcode 9 swift 3.2, It is showing "Module compiled with swift 3.2 cannot be imported in Swift 3.0.2" like this . Can any one please help me. Thanks in…

Manoj Kumar
- 11
- 3
0
votes
0 answers
How to pass data from one view to another when I use SideMenu
I have a side menu. In my Home screen, I am getting data. but when I select the side menu and again opening Home screen.I lost my data in Home Screen.I am using viewwillapper method but it doesn't work.Please tell me how to solve this problem.

krishna
- 23
- 8
0
votes
2 answers
IOS Charts - Limit Line appears twice after refreshing data
I'm using iOS Charts by Daniel Gindi on Github. I'm presenting a chart with a Limit Line and all is well. When I add data to the chart, everything is working fine, yet the Limit Line appears twice. I've tried reinitializing the Limit Line:
…

Martin Muldoon
- 3,388
- 4
- 24
- 55
0
votes
3 answers
Get individual user details in firebase
I'm new to firebase and I recently integrated it to my project. I've logged few events using Analytics.logEvent("event_name", parameters: nil)
This seems to work and I can see data populating in my firebase account. Now I'm trying to get the few…

Francis F
- 3,157
- 3
- 41
- 79