I recently came across this question about searching using the Parse SDK for iOS. Simon asks:
Over the summer I updated a number of apps to iOS 9. A common tasks for me was replacing the deprecated UIAlertView
with new UIAlertController
class. Generally this is easy to do, but there is one scenario that UIAlertView
handles well that UIAlertController
doesn’t support at all: displaying an alert view from parts of your code without a reference to the current view controller, for instance, displaying an alert view from the app delegate.
I’ve been working on a Mac app lately, and while some things are similar to iOS, something are definitely different. One thing that is different are modal windows and run loops.