我需要在每次循環運行時將NSDATE增加一天。我需要將該日期存儲在覈心數據中。任何人都可以告訴我它是如何完成的?日期應該存儲在nsdictionary和所有內容應該是應該的NSDictionaryIncrement Nsdate
1
A
回答
-1
你可以使用這樣的事情:
NSDate *currentDate = [NSDate date]; // This could of course be whatever date you want.
NSDate *newDate = [[currentDate] dateByAddingTimeInterval:3600 * 24];
4
BPDeveloper的解決方案工作,除了在夏令換的相關指令。例如,如果您在任何美國時區,currentDate是2011年11月6日12:30,那麼由於夏時制轉換,因此在2011年11月6日晚上11:30加入24小時實際上會給您。
這裏有一個替代的解決方案,避免了這個問題:
NSDate *currentDate = [NSDate date];
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];
[offsetComponents setDay:1];
NSDate *nextDate = [gregorian dateByAddingComponents:offsetComponents toDate: yourDate options:0];
相關問題
- 1. NSDate increment
- 2. Increment id jquery
- 3. Increment Number OnInsert()
- 4. C#Post Increment
- 5. PHP Array Increment
- 6. Date Increment Issue
- 7. Bash Post Increment
- 8. Auto Increment HexValue
- 9. hapijs auto increment payload index
- 10. Increment Row_Number Only Where Distinct
- 11. Actionscript 3.0 getter setter increment
- 12. Android Slider/SeekBar Increment values
- 13. Post/Pre-Increment混淆
- 14. pre-increment vs post-increment on std ::原子<int>
- 15. Php post/pre increment/decrement,precedence
- 16. Increment ++ i,i ++和i + = 1
- 17. Increment not working in matching game
- 18. 比較NSDate [NSDate日期]
- 19. CREATE SEQUENCE錯誤:無效值 'INCREMENT BY'
- 20. Ruby If .. Else .. End/Increment:語法錯誤
- 21. Increment/Decrement自定義ListView適配器
- 22. DataCache的Increment方法在哪裏?
- 23. MYSQL SELECT和INCREMENT在相同的查詢?
- 24. button push increment number to a text box c#winform
- 25. PHP post-increment/descrement運算符優先級
- 26. 如何運行q循環(INCREMENT Q)?
- 27. `auto-increment` std :: map <string, int> :)
- 28. alter mssql column to add auto increment without t-sql
- 29. Python Increment int字符串中的變量
- 30. mysql update increment int爲空的字段
-1不是每天都有86400秒在裏面。 –