Snippets

Fabian Hernando Leon Ortega Objective C - Common Tasks

Created by Fabian Leon

File ObjectiveC_CommonTasks Added

  • Ignore whitespace
  • Hide word diff
+// Returns the URL to the application's Documents directory.
+- (NSURL *)applicationDocumentsDirectory
+{
+    NSLog(@"%@",[[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory  inDomains:NSUserDomainMask] lastObject]);
+
+    return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
+ }
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.