我正在尝试使用Promotion构建iOS应用。它工作得很好 因为我在默认设计中使用构建。但我希望能够以风格为例 我想要的导航栏(不同的颜色和不同的背景图像)。
如何使用促销活动?
谢谢!
答案 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
希望它有所帮助。