I want to display calendar in this format
to the user. One option is to use "string range" to get the individual calendar components. The second one is to get it using NSCalendar which to me looks like the better one (is it?). So my code is as below. But there are two problems.
Anyone know how to get what I need? Image attached is what exactly I want to achieve. There I am using three UILabel one for "date", second for "month, year" and third for "time".
Any help would be appreciated.
var inputDateString = "Jun/12/2015 02:05 Am +05:00" override func viewDidLoad() { super.viewDidLoad() let newDate = dateformatterDateString(inputDateString) let calendar = NSCalendar.currentCalendar() let components = calendar.components(.CalendarUnitHour | .CalendarUnitMinute | .CalendarUnitMonth | .CalendarUnitYear | .CalendarUnitDay, fromDate: newDate!) let hour = components.hour let minutes = components.minute let month = components.month let year = components.year let day = components.day println(newDate) println(components) println(day) // 12 println(month) // 6 -----> Want to have "Jun" here println(year) // 2015 println(hour) // 2 ------> Want to have the hour in the inputString i.e. 02 println(minutes) // 35 ------> Want to have the minute in the inputString i.e. 05 } func dateformatterDateString(dateString: String) -> NSDate? { let dateFormatter: NSDateFormatter = NSDateFormatter() dateFormatter.dateFormat = "MMM/dd/yyyy hh:mm a Z" // dateFormatter.timeZone = NSTimeZone(abbreviation: "UTC") dateFormatter.timeZone = NSTimeZone.localTimeZone() return dateFormatter.dateFromString(dateString) }
You can use DateFormatter as follow:
extension Formatter { static let monthMedium: DateFormatter = { let formatter = DateFormatter() formatter.dateFormat = "LLL" return formatter }() static let hour12: DateFormatter = { let formatter = DateFormatter() formatter.dateFormat = "h" return formatter }() static let minute0x: DateFormatter = { let formatter = DateFormatter() formatter.dateFormat = "mm" return formatter }() static let amPM: DateFormatter = { let formatter = DateFormatter() formatter.dateFormat = "a" return formatter }() } extension Date { var monthMedium: String { return Formatter.monthMedium.string(from: self) } var hour12: String { return Formatter.hour12.string(from: self) } var minute0x: String { return Formatter.minute0x.string(from: self) } var amPM: String { return Formatter.amPM.string(from: self) } }
let date = Date() let dateMonth = date.monthMedium // "May" let dateHour = date.hour12 // "1" let dateMinute = date.minute0x // "18" let dateAmPm = date.amPM // "PM"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With