alskipp / ASProgressPopUpView

A progress view showing percentage complete in a popup view

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The popup view dismisses when apply masksToBound and clipsToBound

acumenrev opened this issue · comments

When I apply masksToBound or clipsToBound, the popup view dismisses. Please support this

The popup view isn't dismissed, it is not visible, as setting clipsToBounds will clip to the progress bar bounds. The popup view is designed to overlay the view above, so setting the view bounds to include the popup wouldn't make sense. If you need it to behave differently then the source code is available for you to change as required. Alternatively you could place the progress view inside a super view with a frame that you set manually to accommodate the popup view.

Thanks