使用 Rubymotion,如何删除标签栏项目上的光泽效果?
我找到了这个 ObjC 解决方案:
[yourTabbar setSelectionIndicatorImage:[[UIImage alloc] init]];
但是当我以这种方式在 Ruby 中翻译它时(在 app_delegate.rb 中),光泽效果仍然存在:
@tab_controller.tabBar.setSelectionIndicatorImage UIImage.alloc.init
这个红宝石翻译有什么问题?
我也在使用 Pixate,所以也许还有其他方法可以使用简单的 css ......