I am using FSCalender through cocoa pods. I simply want to get the selected date/month/year. I am only getting current date. I am getting details like this :-
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.dateFormat = @"dd.MM.yyyy";
NSString *string = [formatter stringFromDate:[NSDate date]];
NSLog(@"CurrentDate=%@",string);
In string, I am getting output :- CurrentDate=08.02.2017
How to achieve this. Thanks in advance.