Posts by Rodrigo Fuscaldi • 40 points
2 posts
-
0
votes1
answer105
viewsA: How to encrypt and decrypt data in Swift 3 form native without using any external lib
It helps you? let senhaMD5 = self.MD5(string: textField.text!) let stringMD5 = senhaMD5.map { String(format: "%02hhx", $0) }.joined() func MD5(string: String) -> Data { let messageData =…
-
1
votes1
answer238
viewsQ: How to pass a value from a dictionary (which is inside another dictionary) to a Label? Swift 3
I have a database something like this: { "status": "OK", "data": [ { "id": 1, "name": "Mike", "informations": [ { "id": 474, "text": "My son", "reference": "www.google.com", } ] } I’m looking for…