iOS Application Documents Path


/ Published in: Objective C
Save to your folder(s)

Use like this: [[self docsPath] stringByAppendingPathComponent:@"photo.png"]


Copy this code and paste it in your HTML
  1. -(NSString*)docsPath{
  2. return [[[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject] path];
  3. }

URL: http://yasirmturk.com

Report this snippet


Comments


You need to login to view comments.