我需要在导航控制器的右侧栏按钮项上实现一个工具提示,例如"查看您周围的旅行者",它应该始终在指向该右侧栏按钮的 UI 上可见。
我在项目中使用的工具提示的 pod 是 CMPopTipView。到处休息,它工作正常,但在右栏按钮项目的情况下它无法正常工作。请在此处提出正确的建议。
把下面的代码放在viewDidAppear
,
CMPopTipView *navBarLeftButtonPopTipView = [[CMPopTipView alloc] initWithMessage:@"A Message"];
navBarLeftButtonPopTipView.delegate = self;
[navBarLeftButtonPopTipView presentPointingAtBarButtonItem:self.navigationItem.rightBarButtonItem animated:YES];
参考 : CMPopTipView