chrisdroukas's comments

chrisdroukas | 9 years ago | on: This Is the Mindfulness App Apple Doesn’t Want You to Have

There are a few workarounds that don't involve undocumented APIs for this, as someone else in this thread mentioned.

Facebook's Groups app uses (disclaimer: as far as I can tell) an interesting technique involving saving data URIs to the home screen and then deep linking them.

chrisdroukas | 9 years ago | on: Let's crash the integrated browser in Facebook

You can roll your own browser interface using WKWebView — if (for whatever reason) your app supplements the browsing experience, you'd use WKWebView.

SFSafariViewController provides its own Safari-like interface and has an extremely limited set of configuration/customization options.

chrisdroukas | 10 years ago | on: Exploring Apple's 3D Touch

A long press is a function of time: "How long has the user pressed?"

3D Touch is a function of pressure: "How hard has the user pressed?"

In practice, things that your application previously accomplished with long presses may be more suitably accomplished with 3D Touch — things like contextual menus or shortcuts come to mind. Additionally, iOS has new APIs for presenting content using 3D Touch. The article briefly references them.

page 1