Zasadniczo, jak mówi tytuł. Zastanawiam się, jak mogę dodać 1 dzień do NSDate
.
Gdyby to było:
21st February 2011
Stałoby się:
22nd February 2011
Lub gdyby to było:
31st December 2011
Stałoby się:
1st January 2012.
Zasadniczo, jak mówi tytuł. Zastanawiam się, jak mogę dodać 1 dzień do NSDate
.
Gdyby to było:
21st February 2011
Stałoby się:
22nd February 2011
Lub gdyby to było:
31st December 2011
Stałoby się:
1st January 2012.
Odpowiedzi:
Swift 5.0:
var dayComponent = DateComponents()
dayComponent.day = 1 // For removing one day (yesterday): -1
let theCalendar = Calendar.current
let nextDate = theCalendar.date(byAdding: dayComponent, to: Date())
print("nextDate : \(nextDate)")
Cel C :
NSDateComponents *dayComponent = [[NSDateComponents alloc] init];
dayComponent.day = 1;
NSCalendar *theCalendar = [NSCalendar currentCalendar];
NSDate *nextDate = [theCalendar dateByAddingComponents:dayComponent toDate:[NSDate date] options:0];
NSLog(@"nextDate: %@ ...", nextDate);
To powinno być oczywiste.
dateByAddingComponents
połączenia naNSCalendarOptions(rawValue: 0)
Od iOS 8 możesz używać NSCalendar.dateByAddingUnit
Przykład w Swift 1.x:
let today = NSDate()
let tomorrow = NSCalendar.currentCalendar()
.dateByAddingUnit(
.CalendarUnitDay,
value: 1,
toDate: today,
options: NSCalendarOptions(0)
)
Swift 2.0:
let today = NSDate()
let tomorrow = NSCalendar.currentCalendar()
.dateByAddingUnit(
.Day,
value: 1,
toDate: today,
options: []
)
Swift 3.0:
let today = Date()
let tomorrow = Calendar.current.date(byAdding: .day, value: 1, to: today)
date.add(.days, 1)
? * idzie i buduje rozszerzenie
extension Date { func adding(_ component: Calendar.Component, _ value: Int) -> Date? { return Calendar.current.date(byAdding: component, value: value, to: self) } }
WykorzystanieDate().adding(.day, 1) // "Jun 6, 2019 at 5:35 PM"
Zaktualizowano dla Swift 5
let today = Date()
let nextDate = Calendar.current.date(byAdding: .day, value: 1, to: today)
Cel C
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
// now build a NSDate object for the next day
NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];
[offsetComponents setDay:1];
NSDate *nextDate = [gregorian dateByAddingComponents:offsetComponents toDate: [NSDate date] options:0];
iOS 8+, OSX 10.9+, Objective-C
NSCalendar *cal = [NSCalendar currentCalendar];
NSDate *tomorrow = [cal dateByAddingUnit:NSCalendarUnitDay
value:1
toDate:[NSDate date]
options:0];
Działający realizacja Swift 3+ podstawie highmaintenance za odpowiedź i vikingosegundo w komentarzu. To rozszerzenie daty ma również dodatkowe opcje zmiany roku, miesiąca i godziny:
extension Date {
/// Returns a Date with the specified amount of components added to the one it is called with
func add(years: Int = 0, months: Int = 0, days: Int = 0, hours: Int = 0, minutes: Int = 0, seconds: Int = 0) -> Date? {
let components = DateComponents(year: years, month: months, day: days, hour: hours, minute: minutes, second: seconds)
return Calendar.current.date(byAdding: components, to: self)
}
/// Returns a Date with the specified amount of components subtracted from the one it is called with
func subtract(years: Int = 0, months: Int = 0, days: Int = 0, hours: Int = 0, minutes: Int = 0, seconds: Int = 0) -> Date? {
return add(years: -years, months: -months, days: -days, hours: -hours, minutes: -minutes, seconds: -seconds)
}
}
Zastosowanie tylko dodania dnia, o które prosi OP, to:
let today = Date() // date is then today for this example
let tomorrow = today.add(days: 1)
let foo = Date().add([.calendar: 1, .yearForWeekOfYear: 3]
dodawał alternatywne rozwiązanie do mojej odpowiedzi . Dzięki za sugestię, @vikingosegundo!
Swift 4.0 (tak samo jak Swift 3.0 w tej wspaniałej odpowiedzi , wyjaśniając tylko początkującym, takim jak ja)
let today = Date()
let yesterday = Calendar.current.date(byAdding: .day, value: -1, to: today)
Użyj poniższej funkcji i użyj parametru dni, aby uzyskać datę dni przed / dni Za pomocą parametru podaj wartość dodatnią dla przyszłej daty lub ujemną dla poprzednich dat:
+ (NSDate *) getDate:(NSDate *)fromDate daysAhead:(NSUInteger)days
{
NSDateComponents *dateComponents = [[NSDateComponents alloc] init];
dateComponents.day = days;
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDate *previousDate = [calendar dateByAddingComponents:dateComponents
toDate:fromDate
options:0];
[dateComponents release];
return previousDate;
}
To jest praca!
NSCalendar *calendar = [NSCalendar currentCalendar];
NSCalendarUnit unit = NSCalendarUnitDay;
NSInteger value = 1;
NSDate *today = [NSDate date];
NSDate *tomorrow = [calendar dateByAddingUnit:unit value:value toDate:today options:NSCalendarMatchStrictly];
NSDate *today=[NSDate date];
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier: NSGregorianCalendar];
NSDateComponents *components=[[NSDateComponents alloc] init];
components.day=1;
NSDate *targetDate =[calendar dateByAddingComponents:components toDate:today options: 0];
Swift 4.0
extension Date {
func add(_ unit: Calendar.Component, value: Int) -> Date? {
return Calendar.current.date(byAdding: unit, value: value, to: self)
}
}
Stosowanie
date.add(.day, 3)! // adds 3 days
date.add(.day, -14)! // subtracts 14 days
Uwaga: jeśli nie wiesz, dlaczego wiersze kodu kończą się wykrzyknikiem, poszukaj „Swift Optionals” w Google.
Możesz użyć metody NSDate - (id)dateByAddingTimeInterval:(NSTimeInterval)seconds
gdzie seconds
byłaby60 * 60 * 24 = 86400
W Swift 2.1.1 i xcode 7.1 OSX 10.10.5 można dodawać dowolną liczbę dni do przodu i do tyłu za pomocą funkcji
func addDaystoGivenDate(baseDate:NSDate,NumberOfDaysToAdd:Int)->NSDate
{
let dateComponents = NSDateComponents()
let CurrentCalendar = NSCalendar.currentCalendar()
let CalendarOption = NSCalendarOptions()
dateComponents.day = NumberOfDaysToAdd
let newDate = CurrentCalendar.dateByAddingComponents(dateComponents, toDate: baseDate, options: CalendarOption)
return newDate!
}
wywołanie funkcji w celu zwiększenia bieżącej daty o 9 dni
var newDate = addDaystoGivenDate(NSDate(), NumberOfDaysToAdd: 9)
print(newDate)
wywołanie funkcji zmniejszenia bieżącej daty o 80 dni
newDate = addDaystoGivenDate(NSDate(), NumberOfDaysToAdd: -80)
print(newDate)
Oto metoda ogólnego zastosowania, która pozwala dodawać / odejmować dowolny typ jednostki (rok / miesiąc / dzień / godzina / sekunda itp.) W określonym dniu.
Korzystanie z Swift 2.2
func addUnitToDate(unitType: NSCalendarUnit, number: Int, date:NSDate) -> NSDate {
return NSCalendar.currentCalendar().dateByAddingUnit(
unitType,
value: number,
toDate: date,
options: NSCalendarOptions(rawValue: 0))!
}
print( addUnitToDate(.Day, number: 1, date: NSDate()) ) // Adds 1 Day To Current Date
print( addUnitToDate(.Hour, number: 1, date: NSDate()) ) // Adds 1 Hour To Current Date
print( addUnitToDate(.Minute, number: 1, date: NSDate()) ) // Adds 1 Minute To Current Date
// NOTE: You can use negative values to get backward values too
NSDateComponents *dayComponent = [[[NSDateComponents alloc] init] autorelease];
dayComponent.day = 1;
NSCalendar *theCalendar = [NSCalendar currentCalendar];
dateToBeIncremented = [theCalendar dateByAddingComponents:dayComponent toDate:dateToBeIncremented options:0];
Ok - myślałem, że to zadziała dla mnie. Jeśli jednak użyjesz go, aby dodać dzień do 31 marca 2013 r., Zwróci datę, do której dodano tylko 23 godziny. Może faktycznie mieć 24, ale użycie w obliczeniach ma tylko 23:00 godzin dodanych.
Podobnie, jeśli przejdziesz do 28 października 2013 r., Kod doda 25 godzin, w wyniku czego data i godzina 2013-10-28 01:00:00.
Aby dodać dzień, robiłem to na górze, dodając:
NSDate *newDate1 = [now dateByAddingTimeInterval:60*60*24*daysToAdd];
Skomplikowane, głównie ze względu na czas letni.
60*60*24 + 1
powodu sekund przestępnych. daty muszą obejmować to wszystko, i dlatego obchodzenie się z kakao jest naprawdę świetne!
NSDate *now = [NSDate date];
int daysToAdd = 1;
NSDate *tomorrowDate = [now dateByAddingTimeInterval:60*60*24*daysToAdd];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"EEEE, dd MMM yyyy"];
NSLog(@"%@", [dateFormatter stringFromDate:tomorrowDate]);
W trybie szybkim możesz zrobić rozszerzenie, aby dodać metodę w NSDate
extension NSDate {
func addNoOfDays(noOfDays:Int) -> NSDate! {
let cal:NSCalendar = NSCalendar.currentCalendar()
cal.timeZone = NSTimeZone(abbreviation: "UTC")!
let comps:NSDateComponents = NSDateComponents()
comps.day = noOfDays
return cal.dateByAddingComponents(comps, toDate: self, options: nil)
}
}
możesz użyć tego jako
NSDate().addNoOfDays(3)
Swift 4, jeśli wszystko, czego naprawdę potrzebujesz, to 24-godzinna zmiana (60 * 60 * 24 sekundy), a nie „1 dzień kalendarzowy”
Przyszłość:
let dayAhead = Date(timeIntervalSinceNow: TimeInterval(86400.0))
Przeszłość:
let dayAgo = Date(timeIntervalSinceNow: TimeInterval(-86400.0))
NSDate *now = [NSDate date];
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *components = [calendar components:NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnit fromDate:now];
NSDate *startDate = [calendar dateFromComponents:components];
NSLog(@"StartDate = %@", startDate);
components.day += 1;
NSDate *endDate = [calendar dateFromComponents:components];
NSLog(@"EndDate = %@", endDate);
Miałem ten sam problem; użyj rozszerzenia dla NSDate:
- (id)dateByAddingYears:(NSUInteger)years
months:(NSUInteger)months
days:(NSUInteger)days
hours:(NSUInteger)hours
minutes:(NSUInteger)minutes
seconds:(NSUInteger)seconds
{
NSDateComponents * delta = [[[NSDateComponents alloc] init] autorelease];
NSCalendar * gregorian = [[[NSCalendar alloc]
initWithCalendarIdentifier:NSCalendarIdentifierGregorian] autorelease];
[delta setYear:years];
[delta setMonth:months];
[delta setDay:days];
[delta setHour:hours];
[delta setMinute:minutes];
[delta setSecond:seconds];
return [gregorian dateByAddingComponents:delta toDate:self options:0];
}
Swift 2.0
let today = NSDate()
let calendar = NSCalendar.currentCalendar()
let tomorrow = calendar.dateByAddingUnit(.Day, value: 1, toDate: today, options: NSCalendarOptions.MatchFirst)
W swift 4 lub swift 5 możesz użyć jak poniżej:
let date = Date()
let yesterday = Calendar.current.date(byAdding: .day, value: -1, to: date)
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd"
let yesterday_date = dateFormatter.string(from: yesterday!)
print("yesterday->",yesterday_date)
wynik:
Current date: 2020-03-02
yesterday date: 2020-03-01
Rozszerzenie ciągu: Konwertuj String_Date> Date
extension String{
func DateConvert(oldFormat:String)->Date{ // format example: yyyy-MM-dd HH:mm:ss
let isoDate = self
let dateFormatter = DateFormatter()
dateFormatter.locale = Locale(identifier: "en_US_POSIX") // set locale to reliable US_POSIX
dateFormatter.dateFormat = oldFormat
return dateFormatter.date(from:isoDate)!
}
}
Rozszerzenie daty: Konwertuj datę> Ciąg
extension Date{
func DateConvert(_ newFormat:String)-> String{
let formatter = DateFormatter()
formatter.dateFormat = newFormat
return formatter.string(from: self)
}
}
Rozszerzenie daty: Uzyskaj datę +/-
extension String{
func next(day:Int)->Date{
var dayComponent = DateComponents()
dayComponent.day = day
let theCalendar = Calendar.current
let nextDate = theCalendar.date(byAdding: dayComponent, to: Date())
return nextDate!
}
func past(day:Int)->Date{
var pastCount = day
if(pastCount>0){
pastCount = day * -1
}
var dayComponent = DateComponents()
dayComponent.day = pastCount
let theCalendar = Calendar.current
let nextDate = theCalendar.date(byAdding: dayComponent, to: Date())
return nextDate!
}
}
Stosowanie:
let today = Date()
let todayString = "2020-02-02 23:00:00"
let newDate = today.DateConvert("yyyy-MM-dd HH:mm:ss") //2020-02-02 23:00:00
let newToday = todayString.DateConvert(oldFormat: "yyyy-MM-dd HH:mm:ss")//2020-02-02
let newDatePlus = today.next(day: 1)//2020-02-03 23:00:00
let newDateMinus = today.past(day: 1)//2020-02-01 23:00:00
referencja: z wielu pytań
Jak dodać 1 dzień do NSDate?
funkcja matematyki do konwersji dodatniej int na ujemną i ujemną na dodatnią?
Konwertowanie NSString na NSDate (iz powrotem)
Użyj następującego kodu:
NSDate *now = [NSDate date];
int daysToAdd = 1;
NSDate *newDate1 = [now dateByAddingTimeInterval:60*60*24*daysToAdd];
Tak jak
addTimeInterval
jest teraz przestarzałe