UILocalNotification을 2 일마다, 3 일마다 반복하도록 설정하는 방법 ...? 기본 NSCalendarUnits를 사용하지 않고?UILocalNotification에 대해 2 일마다 repeatInterval을 설정하는 방법은 무엇입니까?
1
A
답변
0
당신은 그것을 반복하지 못할 이틀, Locallnotification 만, 4 개 반복 간격
중 하나 일, 주, 월 또는 연도 별
,그에게 열거 값은 당신이 그것을 사용자 정의 canat 유일한 해결책을 허용 I 당신이 시차를 계산하고 그것을 2 일간 비교 한 다음 다시 설정하려고하는지보십시오
-1
먼저 우리는 우리의 첫 번째 지역 알림을 발사 할 NSDate를 설정해야합니다. 알림이 다음 번 알림으로 설정되면 호출됩니다.
NSDate *afterTwoDays = [[NSDate date] dateByAddingTimeInterval:+2*24*60*60];
설정 필요한 매개 변수 :
UILocalNotification *localNotification=[[UILocalNotification alloc]init];
localNotification.fireDate =afterTwoDays;
localNotification.alertBody = @"Body";
localNotification.alertAction = @"Alert";
localNotification.repeatInterval=0;
localNotification.soundName=UILocalNotificationDefaultSoundName;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
당신은 질문을 이해하지 못했다. – KPM