ICL1901
ICL1901

Reputation: 7778

xCode - How to tell whether something will be deprecated?

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

Answers (2)

CitronEvanescent
CitronEvanescent

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

Andy Jones
Andy Jones

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

Related Questions