Search code examples
sharekit

Using ShareKit without ActionSheet


Anybody know to use the ShareKit framework without ActionSheet? I don't want to use the buttons in ActionSheet. I'd like to use of way customizable.


Solution

  • Sorry, but you have a problem. It does not work. The last line gives error.

    -(IBAction)onClickFacebook:(id)sender;{
        NSLog(@"erro");
        UIImage *image = [UIImage imageNamed:@"ninja_crouch.jpg"];
        SHKItem *item = [[SHKItem alloc] init];
        item = [SHKItem image:image title:@"Look at this picture!"];    
    
        [SHKMail shareItem:item];    
    
    }