Skip to content

Instantly share code, notes, and snippets.

@anujb
Created October 3, 2011 00:56
Show Gist options
  • Save anujb/1258212 to your computer and use it in GitHub Desktop.
Save anujb/1258212 to your computer and use it in GitHub Desktop.
UIAppearanceExtensions
public static class UIAppearanceExtensions
{
public static T Appearance<T>(this T obj) where T : NSObject
{
return UIAppearance.FromObject(obj) as T;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment