CMPopTipView got a small update recently, a new presentation animation style submitted by myell0w.
The default animation style I originally implemented was a simple slide into place while fading in effect. Subtle, nice. This is still the default.
The new animation style option is a pop out style animation, like iOS UIAlertViews. This style could be useful when you need to catch the user's attention.
To enable the pop out style animation set the animation property to CMPopTipAnimationPop. For example:
CMPopTipView *popTipView = [[[CMPopTipView alloc] initWithMessage:@"My message"] autorelease]; popTipView.animation = CMPopTipAnimationPop; popTipView.delegate = self; [popTipView presentPointingAtView:button inView:self.view animated:YES];
Get CMPopTipView from github or read more details about this update from the pull request.