标签: ios swift
代码行:
let bytesDecrypted = UnsafeMutablePointer<Int>()
我收到警告: 的&#39;的init()&#39;不推荐使用:将在Swift 3中删除init()。使用nil代替
nil
解决此警告的正确方法是什么?
答案 0 :(得分:21)
这样做,
let bytesDecrypted: UnsafeMutablePointer<Int> = nil