我想在Master-Detail Application模板中使用Custom UIButton而不是BarButton。
请告诉我。
谢谢!
答案 0 :(得分:1)
您可以使用initWithCustomView在UIBarButtonItem中使用任何UIView:
答案 1 :(得分:0)
成功解决问题!!!!
myCode是:
-(IBAction)click_MenuButton:(id)sender
{
[self.masterPopoverController presentPopoverFromRect:[sender frame] inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
答案 2 :(得分:0)
或者您只需在xib中创建一个UIToolBar,然后将UIButton拖到它上面。 将自动创建带有嵌入式UIButton的UIBarButtonItem。