TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Where can I find the list of iOS 8's 4000 APIs?

2 pointsby iamshariqalmost 11 years ago

1 comment

zachliptonalmost 11 years ago
You can see the What&#x27;s New in iOS 8 doc for a general overview of, er, what&#x27;s new: <a href="https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS8.html#//apple_ref/doc/uid/TP40014205-SW1" rel="nofollow">https:&#x2F;&#x2F;developer.apple.com&#x2F;library&#x2F;prerelease&#x2F;ios&#x2F;releaseno...</a><p>More specifically, there&#x27;s the iOS 7.1 to 8.0 API Diffs: <a href="https://developer.apple.com/library/prerelease/ios/releasenotes/General/iOS80APIDiffs/index.html" rel="nofollow">https:&#x2F;&#x2F;developer.apple.com&#x2F;library&#x2F;prerelease&#x2F;ios&#x2F;releaseno...</a>. Note that a huge number of the changes are just small changes to argument lists (there are a gazillion of these in Accelerate, filling the top chunk of the diff doc) and a number of other change come from the switch from (id) return types to (instancetype) in init: methods. Also, getter and setter methods have been replaced with properties in many classes, which doesn&#x27;t break any existing code, but generates changes in the API diffs.