I'm using the Sharekit iOS plugin with Phonegap/Cordova 2.1.0.
Till recently, I was satisfied with its basic functionality. But now my app requires me to use separate methods for Facebook, Twitter & email. This is also provided for by the plugin by using the methods shareToFacebook, shareToTwitter and shareToMail. Combining these with the ActionSheet plugin, i have the whole feature running smoothly.
The thing i am missing is a callback in these three methods which will let me know when a share has been completed successfully, so that i can perform some additional tasks.
I have done some research, which showed me that a method, sharerFinishedSending, is available in the SHKSharerDelegate protocol, as discussed in the issue here.
The process is further explained in the questions here and here.
My problem is that i am very unfamiliar with Objective-C & majority of my app is coded in JavaScript. The links above deal with only native code. If someone could guide me to create these callbacks, or use the sharerFinishedSending method, i'd be very grateful.
The JavaScript functions of the plugin that i'm using are:
ShareKitPlugin.prototype.shareToFacebook = function( message, url)
{
cordova.exec(null, null, "ShareKitPlugin", "shareToFacebook", [message, url] );
};
ShareKitPlugin.prototype.shareToTwitter = function( message, url)
{
cordova.exec(null, null, "ShareKitPlugin", "shareToTwitter", [message, url] );
};
ShareKitPlugin.prototype.shareToMail = function( subject, message)
{
cordova.exec(null, null, "ShareKitPlugin", "shareToMail", [subject, message] );
};
And the corresponding Objective-C methods are:
- (void)shareToFacebook:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options {
SHKItem *item;
NSString *message = [arguments objectAtIndex:1];
if ([arguments count] == 3)
{
NSURL *itemUrl = [NSURL URLWithString:[arguments objectAtIndex:2]];
item = [SHKItem URL:itemUrl title:message contentType:SHKURLContentTypeWebpage];
}
else
{
item = [SHKItem text:message];
}
[SHK setRootViewController:self.viewController];
[SHKFacebook shareItem:item];
}
- (void)shareToTwitter:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options {
SHKItem *item;
NSString *message = [arguments objectAtIndex:1];
if ([arguments count] == 3)
{
NSURL *itemUrl = [NSURL URLWithString:[arguments objectAtIndex:2]];
item = [SHKItem URL:itemUrl title:message contentType:SHKURLContentTypeWebpage];
}
else
{
item = [SHKItem text:message];
}
[SHKTwitter shareItem:item];
[SHK setRootViewController:self.viewController];
}
- (void)shareToMail:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options {
[SHK setRootViewController:self.viewController];
SHKItem *item;
NSString *subject = [arguments objectAtIndex:1];
NSString *body = [arguments objectAtIndex:2];
item = [SHKItem text:body];
item.title = subject;
[SHKMail shareItem:item];
}
Thanks in advance.