http://pragmaticswift.com/may-2017/app-security-in-swift.html
App Security
Security is not a set of methods, it’s a system. It’s better to think about threats and trust as early as you can.
Avoid plaintext at all cost. Encrypt your communication. Encrypt your local data as required.
If you don’t store the password, it can’t be leaked. ;)
But if you need to store passwords, do it right!
It’s not paranoia if it’s true.
App Security
Security is not a set of methods, it’s a system. It’s better to think about threats and trust as early as you can.
Avoid plaintext at all cost. Encrypt your communication. Encrypt your local data as required.
If you don’t store the password, it can’t be leaked. ;)
But if you need to store passwords, do it right!
It’s not paranoia if it’s true.
https://useyourloaf.com/blog/creating-custom-xcode-project-templates/
Creating Custom Xcode Project Templates
Creating Custom Xcode Project Templates
http://aplus.rs/2018/extending-marshal-for-dates/
Extending Marshal (JSON parsing) library to handle Date
Extending Marshal (JSON parsing) library to handle Date