Quantcast
Channel: Unity Forum
Viewing all articles
Browse latest Browse all 1466670

Sharing image and text using native code

$
0
0
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

Code (CSharp):
  1.  
  2. @implementation ViewController
  3. -(void) shareMethod: (const char *) path
  4. {
  5.     NSLog(@"Sample Method Execute");
  6.     NSString *imagePath = [NSString stringWithUTF8String:path];
  7.  
  8.     //        UIImage *image      = [UIImage imageNamed:imagePath];...
Sharing image and text using native code

Viewing all articles
Browse latest Browse all 1466670

Trending Articles