I'm trying to format a label to say "_ minutes ago". How would I go about it?
I have it formatted right now to just say, for example, "11:45 PM".
let dateFormatter = DateFormatter()
dateFormatter.calendar = Calendar.current
dateFormatter.timeStyle = .short
let date = dateFormatter.string(from: peek.timestamp)
peekTimeLabel.text = "\(date)"