ios - How to use [NSFileHandle fileHandleForReadingAtPath:url]? -


i want pass assets url

nsurl *url = [nsurl urlwithstring:@"assets-library://asset/asset.png?id=1000000001&ext=png"]; nsfilehandle *filehandle = [nsfilehandle filehandleforreadingatpath:url] nslog(@"filehandle: %@", filehandle); 

i getting

filehandle = nil;  

how can create filehandle object assets url please let me know

becuase want upload file in chunk.


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -