I need a NSString with the format "yyyy-mm-dd - 11:00:00"
Year, month, and date should be from the current date, while hour, minute, and second should be 11,00,00. I could not figure how to do that.
I need a NSString with the format "yyyy-mm-dd - 11:00:00"
Year, month, and date should be from the current date, while hour, minute, and second should be 11,00,00. I could not figure how to do that.
I think you mean
yyyy-MM-dd - HH:mm:ss
(becausemm
is minutes andMM
is month). But you just needOr if you want it to say
11:00:00
, either pass it thatNSDate
, or you could: