これは私が持っているコードであり、アプリケーションバッジに日付を入れます。アプリを入力せずに毎日この番号をリロードする方法を考えていました。前もって感謝します!
NSDate *today = [NSDate date];
NSCalendar *cal = [NSCalendar currentCalendar];
NSDateComponents *comp = [cal components:NSDayCalendarUnit fromDate:today];
NSInteger day = [comp day];
[UIApplication sharedApplication].applicationIconBadgeNumber = day;