Skip to content

Instantly share code, notes, and snippets.

@clarkezone
Created August 17, 2016 06:41
Show Gist options
  • Select an option

  • Save clarkezone/43f581af5fac545f2a0354ea6e3ef853 to your computer and use it in GitHub Desktop.

Select an option

Save clarkezone/43f581af5fac545f2a0354ea6e3ef853 to your computer and use it in GitHub Desktop.
Images in continuous
using UIKit;
using Foundation;
var Main = getTestImage();
UIImage getTestImage(){
using (var url = new NSUrl("http://www.bringcast.com/images/themes.png")){
using (var data = NSData.FromUrl(url)){
return UIImage.LoadFromData(data);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment