I have to change the alertView of UILocalNotification. How can i achieve this.

Also i want to know how to assign the LocalNotification repeat only for specific days? Ex: Mon,Tue,Fri.

Regards, Anand

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can't customize the local notification. It's only text + 1 or 2 buttons.

To repeat a notification, you have to define the repeatInterval property (NSDayCalendarUnit, NSWeekCalendarUnit, NSMonthCalendarUnit, NSYearCalendarUnit...)

For further details, you can go to Apple local and remote notifications reference library

link|improve this answer
1  
i want to repeat only for specific days – KingofBliss Nov 29 '10 at 16:10
1  
then you have to create different notifications – vincent Nov 29 '10 at 16:11
@vincent, but how to delete different notification, when they are related to one alarm, like monday, tuesday.. – Veer Sep 13 '11 at 9:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.