How to fix warning init() is deprecated

Viewed 4725

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?

1 Answers
Related