在ProMotion屏幕上设置背景图像的最简单方法是什么?

时间:2015-06-03 01:04:55

标签: rubymotion rmq rubymotion-promotion

我只想在屏幕上为占位符设置背景图片。什么是最快,最简单,最简单的方法?我尝试过的所有东西似乎都不起作用。

我应该提到这是在RedPotion中,所以我已经可以访问RMQ。

1 个答案:

答案 0 :(得分:2)

我在RedPotion中为我的RubyTrivia应用做了这个。只需为您给定的RedPotion样式表设置root_view样式即可。在这种情况下,我将背景图像设置为图像资源。

# In an RMQ Stylesheet
def root_view(st)
  st.background_image = image.resource('retina_wood')
end

# In a ProMotion Screen
def on_load
  find(view).style {|st| st.background_image = image.resource('retina_wood') }
end

请注意the RMQ implementation of background_image=将背景设置为平铺(重复)背景图像。因此,如果您想要填充屏幕,您将需要使用不同的方法,因为它在不同大小的屏幕上看起来会有所不同。 我的RubyTrivia应用程序是开源的,所以请欣赏! https://github.com/IconoclastLabs/rubytrivia