Posts by Athila Zuma • 173 points
7 posts
-
0
votes0
answers87
viewsQ: Download product list of an electronic invoice
Hello, I’ve been doing a lot of research, but I haven’t found any documentation, I would like to know how to download the data from an electronic invoice (customer and product list) of the state of…
-
0
votes1
answer309
viewsA: Symmetric Swift encryption
Updated: I found a library that does this: https://github.com/krzyzanowskim/CryptoSwift and the code to solve this problem: let input = NSData() let encrypted = try! input.encrypt(AES(key:…
-
0
votes1
answer103
viewsQ: Swift json deserialize
Hello, I have the following code to deserialize a json: let urlFinal = URLSERVIDOR+"/Geral/consulta?idcliente=\(id)" let jsonUrl = urlFinal let session = NSURLSession.sharedSession() let shotsUrl =…
-
0
votes5
answers3267
viewsQ: Php returns null JSON when it has accent in Mysql
Hello, I have the following code in php: <?php $con=mysqli_connect("localhost","user","senha","banco"); $parametro = $_GET["parametro"]; if (mysqli_connect_errno()){ echo "Failed to connect to…
-
6
votes1
answer1251
viewsQ: How to filter separate dates by day , month and year in Mysql
Hello, I have a table "Meetings" in Mysql with the following structure: id:Int(11), subject:String(40), day:String(2), mes:String(2), year:String(4), active:String(2) except in the field day the day…
-
0
votes1
answer187
viewsQ: Navigation bar some no Xcode com Swift
I am making an application in Swift in Xcode 7.2.1, I am using navigation controller in this application. I created the tabs using push, until then the navigation bars were appearing at the top. But…
-
0
votes1
answer309
viewsQ: Symmetric Swift encryption
I’m new to Swift, and I’d like to encrypt a string, using some symmetric encryption algorithm so that it’s possible with the same decryption key. I would like to know how this can be done in the…