Questions tagged as 'swift3'

3
answers

Calculate route between two points with Google Maps in IOS

I'm using the SDK of Google Maps in
asked by 20.10.2016 / 08:18
4
answers

Create a circular menu in ios with swift

I need to make a menu in IOS , that when the application starts, a menu like this will appear: I have been looking at bookstores but none resemble what I need. I've also tried with constraints but I can not make it look lik...
asked by 13.10.2016 / 09:25
1
answer

checkbox in swift

I need to add checkbox with the days of the week as in this image: The problem is that I can not find how to do it, I have tried with the library iCheckbox but it is not available. EDITED The response of Error404 is...
asked by 08.11.2016 / 10:35
1
answer

Error navigating between two controllers with segues in IOS

I have two views, A and B, each with its respective driver. From view A I can go to B. And from the B I open a new controller that has no associated view, but I create it programmatically. From the new controller created I have a button th...
asked by 23.11.2016 / 12:04
1
answer

Error updating Swift 3

How about, I have a problem, my application with Xcode 7.3.1 ran perfectly, since I updated Xcode 8 my application was updated and the code was automatically converted, I got some errors but I could fix them, I run my app but when I try to open...
asked by 22.09.2016 / 05:52
1
answer

Using objects as properties of another class Swift 3

I am new to Swift, I have a class that has properties that belong to other classes. class Pizza { var tamaño=Tamaño.self var masa=Masa.self var queso=Queso.self var ingredientes = [Ingrediente]() var aa:String = "" } The...
asked by 20.08.2017 / 01:01
2
answers

Form in IOS

I'm doing an app in swift and I need to make a form like this: At the beginning I was doing it with a UITableVIew , but at the time of writing, when the keyboard was displayed, I scrolled and the field was not visible. I ha...
asked by 30.09.2016 / 07:12
2
answers

Call an AppDelegate.swift function from a .m file. Objective-c mixed with swift

I'm doing an app in swift , but I had to use a library that is only in objective-c , so I had to create a file .h and another file .m The problem is that from the file .m I have to call a function of AppDel...
asked by 29.09.2016 / 13:41
2
answers

'++' is deprecated: it will be removed in Swift 3

I am migrating a class to Swift 3 and it shows me the error: '++' is deprecated: it will be removed in Swift 3. This is the code: column = column >= (numberOfColumns - 1) ? 0 : ++column The problem is in ++ column.     
asked by 07.10.2016 / 17:17
1
answer

pass an array with swiftyJson to model using JSON with init (SWIFT 4.2)

I have a JSON where there is an array of images, I want to use SwiftyJson to bring that array ... and in the model I use an initializer - > init (json: JSON), so when iterating with: let suggestions = json["industries", "Suggestions"...
asked by 30.08.2018 / 18:34