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 System.Collections.Generic; | |
| using System.Diagnostics; | |
| using MonoTouch.Foundation; | |
| namespace MonoTouch.Utils { | |
| public static class Extensions { | |
| public static string Dump(this NSDictionary dictionary, int level = 0) { | |
| var dump = ""; |
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 System; | |
| using System.Drawing; | |
| using System.Linq; | |
| using System.Timers; | |
| using MonoTouch.Foundation; | |
| using MonoTouch.UIKit; | |
| using MonoTouch.Utils; // Graphics.CreateBackground: https://gist.github.com/1410055 | |
| namespace Milo.UI { | |
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 System; | |
| using System.Drawing; | |
| using MonoTouch.CoreGraphics; | |
| using MonoTouch.UIKit; | |
| namespace MonoTouch.Utils { | |
| public class Graphics { | |
| public static CGImage CreateBackground(float width, float height, float radius, CGColor color) { |