Disable the interactive dismissal of presented view controller

iOS 13 introduces a new design of modalPresentationStyle .pageSheet (and its sibling .formSheet) for modally presented view controllers… …and we can dismiss these sheets by sliding the presented view controller down (interactive dismissal). Although the new “pull-to-dismiss” feature is pretty useful, it may not always be desirable. THE QUESTION: How can we turn the interactive … Read more

Is it possible to disable floating headers in UITableView with UITableViewStylePlain?

I’m using a UITableView to layout content ‘pages’. I’m using the headers of the table view to layout certain images etc. and I’d prefer it if they didn’t float but stayed static as they do when the style is set to UITableViewStyleGrouped. Other then using UITableViewStyleGrouped, is there a way to do this? I’d like … Read more

How to use UIVisualEffectView to Blur Image?

Could someone give a small example of applying the blur to an image? I’ve been trying to figure out the code for a while now 🙁 still new at obj c! The UIVisualEffectView provides a simple abstraction over complex visual effects. Depending on the desired effect, the results may affect content layered behind the view … Read more