Open Source iOS Library For Easily Creating Local Notifications At Specific Time Intervals

Last month I mentioned a nice open source library allowing you to automatically present users with notes after updates.

Here’s another library that provides a nice way to communicate with users allowing you to easily set up automatic local notifications with called ACPreminder from Antonio Casero.

ACPReminder allows you easily create messages with an array, specify time periods between messages, and randomly select message to show if desired.

Here’s an example from the readme showing how to create some local notifications with ACPReminder:

ACPReminder * localNotifications = [ACPReminder sharedManager];

localNotifications.messages = @[@"Hey – This potion’s really odd. Come and See", @"Your Village miss you"", @"Did you know our new features?"];
localNotifications.timePeriods = @[@(7),@(10)];
localNotifications.appDomain = @"
com.mydomain.appName";

[localNotifications createLocalNotification];

You can clone the Git repository from Github here:

https://github.com/antoniocasero/ACPReminder.git

You can find ACPReminder on Github here.

A nice easy way to set up local notifications for marketing purposes.

FacebookTwitterDiggStumbleUponGoogle Plus

Original article: Open Source iOS Library For Easily Creating Local Notifications At Specific Time Intervals

©2014 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.

Leave a Reply

Your email address will not be published. Required fields are marked *