I want to create a EKEvent in calendar with forever repeat option. Below is the code for the Recurrence rule
EKRecurrenceRule *rule = [[EKRecurrenceRule alloc]
initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily
interval:1
end:[EKRecurrenceEnd recurrenceEndWithEndDate:date]];
how to set infinite or never end in recurrence end argument.
Thanks