It would most likely be better to find some other more accurate workaround, such as using seconds from 1970 (or whatever), but if you must do it this way....
Using NSDateComponents you grab each digit from the string you need:
NSDateComponents *todayComponents = [gregorian components:(NSWeekdayCalendarUnit |NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit) fromDate:date];
NSInteger day = [todayComponents day];
NSInteger month = [todayComponents month];
The above example is not complete, but should give you an idea of how it is done.
Then you would need to create a string of integers formed by all the above values, something like:
NSString *stringDate = [NSString stringWithFormat:@"%i%i",day,month];
Then convert that back into an int value:
int finalValue = [stringDate intValue]
I've never done this, but it would be my initial approach.
StringDateTime's value ? Why don't you use theNSDateobject ? Or its timestamp value ? – Templar Jul 24 '12 at 10:26