Reputation: 7778
Is it a folly to try to future-proof an app? By accident, I came across statements today that will be deprecated.
[self presentModalViewController:controller animated:YES];
[self dismissModalViewControllerAnimated:YES];
This made me wonder if there is some list of methods to avoid/change.
Upvotes: 0
Views: 316
Reputation: 175
None that I know of, you may hear something on Apple dev forum speaking of the next version of iOs but you really can't speak aout ... everything is under NDA
Upvotes: 1
Reputation: 6275
There's no clear way to tell if some API, function, class, etc... will be deprecated in the future.
You can however follow the developer community. You can also take an educated guess by checking if the style, naming, functionality differ significantly enough from the rest of the API, class, project, etc.
Upvotes: 1