我有一个标准工具栏的tableview。我想改变这个工具栏的样式。
是否可以继承UITableView.toolbar并覆盖drawRect?
答案 0 :(得分:0)
最简单的方法是使用UIAppearance
:
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIToolbar_Class/Reference/Reference.html
如果您覆盖drawRect:
似乎没有做任何事情,而是需要覆盖drawLayer:inContext:
http://atastypixel.com/blog/making-uitoolbar-and-uinavigationbars-background-totally-transparent/