Getting Current Time in string in Custom format in objective c
You want a date formatter. Here’s an example: NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@”dd-MM-yyyy HH:mm”]; NSDate *currentDate = [NSDate date]; NSString *dateString = [formatter stringFromDate:currentDate];