I am trying to share image and text on any selected social media. I want to implement functionality similar to intent sharing in android.
For this I have written following code in objective c and call same method in my unity c# code
Sharing image and text using native code
For this I have written following code in objective c and call same method in my unity c# code
Code (CSharp):
- @implementation ViewController
- -(void) shareMethod: (const char *) path
- {
- NSLog(@"Sample Method Execute");
- NSString *imagePath = [NSString stringWithUTF8String:path];
- // UIImage *image = [UIImage imageNamed:imagePath];...