For the code line:
let bytesDecrypted = UnsafeMutablePointer<Int>()
I am getting the warning:
'init()' is deprecated: init() will be removed in Swift 3. Use nil
instead
What is the correct way to fix this warning?
Do like this,
let bytesDecrypted: UnsafeMutablePointer<Int> = nil
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With