You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you show the modal in a table view it works fine if no scrolling has happened yet. If the user scrolls it begins to blur a smaller and smaller portion of the screen.
The text was updated successfully, but these errors were encountered:
I am also trying to show a view (UICollectionView) on top of a table view. More precise it should show over visible part of scroll view. Currently modal view is init with frame origin (0,0).
if (self = [self initWithFrame:CGRectMake(0, 0, parentView.width, parentView.height)]) {
if (self = [self initWithFrame:parentView.bounds]){
This works the modal view is always shown over visible frame of table view. however when i scroll down to the last table cell and show the modal view there, the dismissButton is shown correctly but triggers no action.
When you show the modal in a table view it works fine if no scrolling has happened yet. If the user scrolls it begins to blur a smaller and smaller portion of the screen.
The text was updated successfully, but these errors were encountered: