Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View rejahanwer's full-sized avatar

Rejah Anuvar rejahanwer

  • Uninitiated inc
  • Dallas
View GitHub Profile
@rejahanwer
rejahanwer / applicationDocumentsDirectory.m
Created August 22, 2016 06:41
A method that returns a URL to the current Application_Home/Documents directory
- (NSURL *)applicationDocumentsDirectory {
return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
}