Posts by Julio Figueiredo • 47 points
9 posts
-
0
votes1
answer58
viewsQ: Sectionheader tableview Swift
I have a message tableview, I would like to know how to add sections using the date field of the Notificationitem object. struct NotificationItem: Codable { let title: String let body: String let…
-
0
votes1
answer235
viewsQ: Load web page in Uiwebview Swift 3
Good morning, everyone I can easily upload a web page to a Uiwebview with the following Swift code: import UIKit class ConteudoOnlineViewController: UIViewController { @IBOutlet weak var pagina:…
-
-2
votes1
answer104
viewsQ: Push Notifications Ios
I would like to add push Notifications to my app, I would like someone to explain to me what this whole process would be like since the data enters a SQL Server database and my app receives this…
-
2
votes2
answers175
viewsQ: How to share a pdf that is on a Swift webview
I have a webview and I call it an address that if accessed by a browser forces a PDF download, in the app I created uploaded the PDF in a webview, but I would also like to give the user the option…
-
1
votes1
answer74
viewsQ: Share a pdf file in Swift by email
Good afternoon I have a Tab Bar Item and would like when I click on it to trigger a Uiactivityviewcontroller that would pay a PDF of an ex link:(http://www.meusite/boleto.pdf) and I can send it as…
-
1
votes1
answer105
viewsQ: How to encrypt and decrypt data in Swift 3 form native without using any external lib
I have a service in c# which must be accessed with a url encrypted. Is there any way to encrypt data on Swift natively without using these lib cocoapods? My project doesn’t use any of this and would…
-
0
votes1
answer501
viewsQ: Instantiate Swift object and populate with webapi data
I’ve searched several Youtube sites and videos and I can’t find anything about it, if there’s anyone willing to show me that code thank you, because I can’t just look at Apple’s documentation, would…
-
0
votes2
answers263
viewsQ: Save object to a Swift(IOS) session
I have a class and a subclass inside import Foundation import ObjectMapper class Aluno: Mappable { var ra:String! var senha:String! var nome:String! var cpf:String! var email:String! var…
-
0
votes1
answer390
viewsQ: Populate object in Swift using data from a JSON Return
I have a webapi that returns a list of evidence: { "Provas": [ { "Codigo": "11111111111", "Disciplina": { "Codigo": "111111", "Nome": "SOCIOLOGIA E EDUCAÇÃO" }, "Tipo": "SUB", "Correcao":…