extension TimeInterval { var timeInSeconds: Int { return Int(self) } var timeInMinutes: Int { return Int(self) / 60 } }