在UINavigationController的右栏按钮上实现工具提示



我需要在导航控制器的右侧栏按钮项上实现一个工具提示,例如"查看您周围的旅行者",它应该始终在指向该右侧栏按钮的 UI 上可见。

我在项目中使用的工具提示的 pod 是 CMPopTipView。到处休息,它工作正常,但在右栏按钮项目的情况下它无法正常工作。请在此处提出正确的建议。

把下面的代码放在viewDidAppear

CMPopTipView *navBarLeftButtonPopTipView = [[CMPopTipView alloc] initWithMessage:@"A Message"];
navBarLeftButtonPopTipView.delegate = self;
[navBarLeftButtonPopTipView presentPointingAtBarButtonItem:self.navigationItem.rightBarButtonItem animated:YES];

参考 : CMPopTipView

相关内容

  • 没有找到相关文章

最新更新