3
A
回答
0
獲取週數 和決策依據星期數
0
-(NSString*) getWeekOfMonth {
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
[dateFormatter setTimeStyle:NSDateFormatterShortStyle];
[dateFormatter setDateFormat:@"W"];
NSString *weekNumber = [dateFormatter stringFromDate:[NSDate date]];
[dateFormatter release];
return weekNumber;
}
NSInteger weekInt = [weekNumber integerValue];
相關問題
- 1. 每週一重複本地通知
- 2. 週末取消重複本地通知[ReactNative]
- 3. 每14天(兩週)後重複本地通知?
- 4. 週期性地發送本地通知
- 5. Phonegap重複背景本地通知
- 6. 重複的ios本地通知
- 7. PhoneGap每天重複本地通知Android
- 8. 重複本地通知iOS 10
- 9. iOS本地通知重複x次
- 10. 如何在一週中的特定幾天重複本地通知(iOS Swift 3)
- 11. IOS重寫本地通知
- 12. Android設備啓動時重複通知
- 13. iPhone本地通知循環:復位fireDate設備顯示通知提醒
- 14. 本地通知消防日期備份
- 15. 本地通知
- 16. 本地通知
- 17. 本地通知
- 18. 本地通知?
- 19. 在用戶選擇的swift 3重複間隔中的本地通知
- 20. 通知不重複
- 21. Android通知重複
- 22. 如何取消特定重複本地通知,並重新計劃下週在iOS的10(SWIFT)
- 23. 定義重複本地通知的結束日期
- 24. 取消重複本地通知的單次發生
- 25. 如何重複本地通知後的iOS 814天和9
- 26. 製作只在特定日期重複的本地通知
- 27. 如何在不同的時間每天重複本地通知
- 28. 構建iPhone應用程序,觸發重複的本地通知
- 29. iPhone:如何設置重複每日/每小時本地通知?
- 30. 如何重複本地通知自定義的時間間隔
[你嘗試過什麼?](http://mattgemmell.com/2008/12/08/what-have-you-tried /) – Sujay
notif.repeatInterval = NSWeekCalendarUnit * 2; – Chirag
嘗試在當天添加14天,這可能會讓您到當前日期的備用週日。 – Bala