chrismiles / CMPopTipView

Custom UIView for iOS that pops up an animated "bubble" pointing at a button or other view. Useful for popup tips.

Home Page:https://github.com/chrismiles/CMPopTipView

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ensure tip is on top of other views

yvsong opened this issue · comments

Sometimes the tipView is hidden below another view when pointing to a bar button item on a toolbar. Adding the following as the final line in presentPointingAtView:inView:animated: ensures the tip is on the top:

self.layer.zPosition = MAXFLOAT;

Visibility is decided by container view.