JDFTooltips icon indicating copy to clipboard operation
JDFTooltips copied to clipboard

Arrow appears behind the target view instead of over it.

Open neerav512 opened this issue 10 years ago • 1 comments

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. img_6937

neerav512 avatar Feb 10 '16 12:02 neerav512

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];

ahmetselman avatar Jul 02 '17 06:07 ahmetselman