Skip to content

Instantly share code, notes, and snippets.

@satococoa
Created August 15, 2012 08:49
Show Gist options
  • Select an option

  • Save satococoa/3357721 to your computer and use it in GitHub Desktop.

Select an option

Save satococoa/3357721 to your computer and use it in GitHub Desktop.
UIViewに背景画像を使用する
def loadView
self.view = UIView.new.tap do |v|
bg_image = UIImage.imageNamed('bg_black.png')
v.backgroundColor = UIColor.colorWithPatternImage(bg_image)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment