我想在主从应用程序模板中使用自定义 UIButton 而不是 BarButton。
请给我建议。
谢谢!!
我想在主从应用程序模板中使用自定义 UIButton 而不是 BarButton。
请给我建议。
谢谢!!
您可以使用 initWithCustomView 在 UIBarButtonItem 中使用任何 UIView:
成功解决问题!!!!
我的代码是:
-(IBAction)click_MenuButton:(id)sender
{
[self.masterPopoverController presentPopoverFromRect:[sender frame] inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
或者您可以简单地在 xib 中创建一个 UIToolBar,然后将一个 UIButton 拖到它上面。将自动创建带有嵌入式 UIButton 的 UIBarButtonItem。