I saw this post: iOS and finding Tomorrow.
The code provided is:
units = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit; NSDateComponen
Simple and straight forward solution :
NSDate *currentDate = [NSDate date]; NSDate *nextDate = [currentDate dateByAddingTimeInterval:(24*3600)];
This is working fine for me.