Ответ 1
NSTimeInterval - это просто двойной тип, поэтому вы можете преобразовать его в строку, используя + stringWithFormat: method
NSTimeInterval today = [[NSDate date] timeIntervalSince1970];
NSString *intervalString = [NSString stringWithFormat:@"%f", today];