如何使用促销使用自定义背景图像或颜色

时间:2013-05-17 10:19:34

标签: rubymotion

我正在尝试使用Promotion构建iOS应用。它工作得很好 因为我在默认设计中使用构建。但我希望能够以风格为例 我想要的导航栏(不同的颜色和不同的背景图像)。

如何使用促销活动?

谢谢!

1 个答案:

答案 0 :(得分:2)

您可以使用Teacup轻松自定义您的视图。 https://github.com/rubymotion/teacup

将茶杯添加到您的gemfile中,在app / styles / appearence.rb中创建一个文件appearence.rb并粘贴以下代码:

Teacup::Appearance.new do

  style UINavigationBar, {
    tintColor: UIColor.blackColor
  }

  style UIBarButtonItem, {
    tintColor: UIColor.blackColor
  }

  style UITableViewCell, {
    layer: {  # style the layer!
      shadowRadius: 3
    },
    backgroundView: {  # style the background!
      backgroundColor: UIColor.blackColor
    },
    imageView: {  # style the imageView!
      contentMode: UIViewContentModeScaleAspectFill
    }
  }

  style UISearchBar, {
    tintColor: UIColor.colorWithRed(0.733, green:0.733, blue:0.733, alpha:1)
  }
end

在加载观看次数之前,将此行添加到您的应用代理

Teacup::Appearance.apply

希望它有所帮助。