Advertisement
RRK

NSDate

RRK
Jul 9th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  I have written this code on application Resign Active
  3.  
  4.    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  5.    
  6.     NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"file.plist"];
  7.    
  8.     NSDate *currentDate = [NSDate date];
  9.     NSMutableDictionary *d = [NSMutableDictionary new];
  10.     [d setObject:currentDate forKey:@"my-date"];
  11.    
  12.     [d writeToFile:filePath atomically:YES];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement