Apache License, 2.0 FREE

The Apache License, 2.0 is an
open-source license.
Read full license

You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

(5 ratings)

Tell a Friend Email Composer

An iOS toolkit for displaying a preconfigued mail composer with a "Tell a Friend" template in ios apps.

Share and win up to $15k in prizes each month!Learn more

Share

Description

What is iTellAFriend?

iTellAFriend is an iOS toolkit for displaying a preconfigued mail composer with a "Tell a Friend" template in ios apps.

Installation

To install iTellAFriend into your app, drag the iTellAFriend.h, .m into your project.

To enable iTellAFriend in your application you need to initialize iTellAFriend before the app has finished launching. The easiest way to do this is to add the iTellAFriend configuration code in your AppDelegate's, like this:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

  [iTellAFriend sharedInstance].appStoreID = 408981381;

  return YES;
}

To present the iTellAFriend controller, use:

if ([[iTellAFriend sharedInstance] canTellAFriend]) {
  UINavigationController* tellAFriendController = [[iTellAFriend sharedInstance] tellAFriendController];
  [self presentModalViewController:tellAFriendController animated:YES];
}

       

Questions & Comments

Leave a comment

You must be logged-in to leave a comment.
Log-in now or register for a free account.
No comments have been posted yet.
You must be logged-in to vote. Log-in to your account or register now.
View all 4 reviews »

User Reviews

    Easy to use. Does exactly what it is supposed to to do.
    - Pantelis Proios, 5 months ago
    Flag review
    Was this helpful? Yes No
    Worked perfectly for me, tks.
    - Vinicius, 6 months ago
    Flag review
    Was this helpful? Yes No
  • 1 of 1 people found this review helpful
    Excellent component. Just implemented "iRate" that I found on bin press as well. This component was a bit more tricky for 2 reasons. #1: I had to either make it ARC compliant myself (which I did at first, then I found an updated version of this on github) and #2: I had linking problems (turns out it was due to me not adding MessageUI framework to my project). Works great after setup, 5 stars!
    - Matthew Boeck, 12 months ago
    Flag review
    Was this helpful? Yes No