Is there anyway to simulate the [NSString stringWithFormat:@\"%p\", myVar], from Objective-C, in the new Swift language?
[NSString stringWithFormat:@\"%p\", myVar]
For example:
le
Just use this:
print(String(format: "%p", object))