JDFTooltips
JDFTooltips copied to clipboard
Arrow appears behind the target view instead of over it.
I have added tooltips using sequential manager to my root view controller and the arrow of the tool tip actually appears behind the bar button or the target view in question.
You are using navigationContorller. So you have to add tooltip on navigationcontorller's view. Like something;
JDFTooltipView *tooltip = [[JDFTooltipView alloc] initWithTargetView:someView hostView:self.navigationController.view.window tooltipText:@"Some text here." arrowDirection:JDFTooltipViewArrowDirectionUp width:260.0f];
[tooltip show];