1

我想在主从应用程序模板中使用自定义 UIButton 而不是 BarButton。

请给我建议。

谢谢!!

4

3 回答 3

1

您可以使用 initWithCustomView 在 UIBarButtonItem 中使用任何 UIView:

http://developer.apple.com/library/ios/documentation/uikit/reference/UIBarButtonItem_Class/Reference/Reference.html#//apple_ref/occ/instm/UIBarButtonItem/initWithCustomView

于 2012-11-22T00:53:51.663 回答
0

成功解决问题!!!!

我的代码是:

-(IBAction)click_MenuButton:(id)sender
{

    [self.masterPopoverController presentPopoverFromRect:[sender frame] inView:self.view  permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

}
于 2012-11-22T00:56:05.847 回答
0

或者您可以简单地在 xib 中创建一个 UIToolBar,然后将一个 UIButton 拖到它上面。将自动创建带有嵌入式 UIButton 的 UIBarButtonItem。

于 2012-11-22T01:11:24.150 回答