-
Notifications
You must be signed in to change notification settings - Fork 8
Custom View
shu223 edited this page Sep 5, 2013
·
3 revisions
Just call “inviteVia” functions for each via type.
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
switch (indexPath.row) {
case 0:
default:
// title
break;
case 1:
// Twitter
[ASInviter inviteVia:ASInviteTypeTwitterDM inviteInfo:nil completion:nil];
break;
case 2:
// Facebook
[ASInviter inviteVia:ASInviteTypeFacebookMessage inviteInfo:nil completion:nil];
break;
case 3:
// Mail
[ASInviter inviteVia:ASInviteTypeMail inviteInfo:nil completion:nil];
break;
case 4:
// SMS
[ASInviter inviteVia:ASInviteTypeSMS inviteInfo:nil completion:nil];
break;
}
}