In my Reachability class I'm trying to call SCNetworkReachabilityContext and set a pointer to self as info:
var context = SCNetworkReachabilityContext(version: 0, info: nil, retain: nil, release: nil, copyDescription: nil)
context.info = UnsafeMutablePointer<Void>(self)Cannot find an initializer for type 'UnsafeMutablePointer<Void>' that accepts an argument list of type '(Reachability)'
How do I achieve this?