I'm so fedup with NSDate
string object.
currently I am generating an unique id on the bases of NSDate
as follows:
NSDate *current_date = [[NSDate date]retain];
NSDateFormatter *df = [[NSDateFormatter alloc]init];
[df setDateFormat:@"HHmmssddMMYY"];
NSString *unique_id=[df stringFromDate:current_date];
NSString * current_Test_id=[NSString stringWithString:unique_id];
NSLog(@"current_test_idString %@",current_Test_id);
The code above is generating unique id and prints successfully but if I am printing or accessing currtent_Test_id
in another IBAction
method then app crashes.