Skip to content

Instantly share code, notes, and snippets.

@martinbowling
Created May 18, 2010 18:26
Show Gist options
  • Save martinbowling/405339 to your computer and use it in GitHub Desktop.
Save martinbowling/405339 to your computer and use it in GitHub Desktop.
using System;
using System.Drawing;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
namespace MonoTouch.UIKit {
[BaseType (typeof (UIButton))]
interface UIGlassButton {
[Export ("initWithFrame:")]
IntPtr Constructor (RectangleF frame);
[Export ("tint")]
UIColor Tint { get; set; }
[Export ("setValue:forKey:")]
void SetValueForKey (NSObject anObject, string key);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment