2012.06.03
RubyMotion で画像を View の上に表示する
備忘録的にメモ。
image = UIImage.imageNamed("icon.png")@image_view = UIImageView.alloc.initWithImage(image)@image_view.frame = CGRectMake(0, 0, 36, 36)view.addSubview(@image_view)
表示したい画像の画像ファイルは resources 以下に置きます。
2012/06/03 15:34:00