How to convert CFDataRef into NSData ?
I have CFDataRef and I want to convert it into NSData. I am not getting how to do this.
anyone help me..
It's toll-free bridged, so you just have to cast it.
NSData *myData = (NSData *)myCFDataRef;