Advertisement
progrmor

Untitled

Jun 24th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. public void iosShareStone(String path) {
  2.         GLKView glkView = ((GLKView) ((IOSApplication) Gdx.app).getUIViewController().getView());
  3.         UIImage image = glkView.getSnapshot();
  4.         NSArray<NSObject> imageArray = new NSArray<NSObject>(image);
  5.         UIActivityViewController share = new UIActivityViewController(imageArray,null);
  6.         ((IOSApplication)Gdx.app).getUIViewController().presentViewController(share, true, null);
  7.  
  8.         //NSData data = image.toPNGData();
  9.         //data.write(, true);
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement