Created
August 17, 2016 06:41
-
-
Save clarkezone/43f581af5fac545f2a0354ea6e3ef853 to your computer and use it in GitHub Desktop.
Images in continuous
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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