z这是基于我在这里提出的一个问题,我已经取得了很好的进展:
我基本上遵循了为我提供的教程。
http://brianflove.com/2012/12/10/how-to-create-an-ipad-popover-view/
问题
现在我的问题是,我必须动态生成我的 ui 栏按钮,就好像我只是将它拖放到情节提要上一样,我被限制为左侧一个,右侧一个。这是我生成按钮的代码
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
UIBarButtonItem *btn = [[UIBarButtonItem alloc] initWithTitle:@"Button" style:UIBarButtonItemStyleBordered target:self action:@selector(getMenu:)];
self.navigationItem.leftBarButtonItems = [[NSArray alloc] initWithObjects:btn, nil];
}
基于该教程,我需要使用 segue 来弹出uitableview
我需要的内容。但这需要我有一个像这样的锚点
所以我的问题是,我该如何添加一个锚点UIBarButtonItem
呢?我一直在搜索,并且一直在寻找有关创建自定义弹出框类的信息?这是准确的吗?