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?
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?