Snippets

Fabian Hernando Leon Ortega Objective C - Common Tasks

Created by Fabian Hernando Leon Ortega
1
2
3
4
5
6
7
// 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];
 }

Comments (0)

HTTPS SSH

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