Skip to content

Instantly share code, notes, and snippets.

@Redth
Created September 13, 2012 15:32
Show Gist options
  • Select an option

  • Save Redth/3715110 to your computer and use it in GitHub Desktop.

Select an option

Save Redth/3715110 to your computer and use it in GitHub Desktop.
Blog-Post-MonoTouch-iPhone5-02
static UIImage tableViewBackgroundImage = null;
public static UIImage TableViewBackgroundImage
{
get
{
if (tableViewBackgroundImage == null)
tableViewBackgroundImage = IsTall
? UIImage.FromFile("Images/TableViewBackground-568h@2x.png")
: UIImage.FromFile("Images/TableViewBackground.png");
return tableViewBackgroundImage;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment