Updating extensions for iOS 9.3.3: Difference between revisions

From iPhone Development Wiki
(Creation.)
 
m (SBUIController's -finishLaunching)
Line 8: Line 8:


Unlike previous instances of "Updating extensions for iOS X", this specific version has several internal changes as well as a different public jailbreak method which demands a separate page for it.
Unlike previous instances of "Updating extensions for iOS X", this specific version has several internal changes as well as a different public jailbreak method which demands a separate page for it.
= What has changed in iOS 9.3.3? (Classes, frameworks, etc.) =
* SBUIController's <tt>-finishLaunching</tt> ceased to exist. Consider using notifications to perform initializations of your tweaks if you were hooking this method.
<tt>com.apple.accessibility.system.app.server.ready</tt>, <tt>com.apple.frontboard.systemappservices.serverNotifyToken</tt>, <tt>SBSpringBoardDidLaunchNotification</tt>, <tt>com.apple.springboard.finishedstartup</tt>, <tt>com.apple.sharing.SpringBoard.started</tt>, <tt>com.apple.springboard.homescreenunlocked</tt> are some of the notifications to register for.

Revision as of 22:59, 25 July 2016

Let's collect knowledge like we did with Updating extensions for iOS 9, Updating extensions for iOS 8 and Updating extensions for iOS 7 - paste in your notes and share what you've learned, and somebody else will organize it later. :) If you want to ask questions and share tips over chat with other developers, see How to use IRC for how to connect to #theos and #iphonedev.

Hey developer, you can add your knowledge here! Yes, you! Make an account and edit this page!

It's also helpful to double-check the statements here and add more info! These are notes and drafts from early research - feel free to update them.

If you want to see what's been recently updated on this page, you can use the wiki's history feature to compare the revisions (to look at the diff) since the last time you visited this page.

Unlike previous instances of "Updating extensions for iOS X", this specific version has several internal changes as well as a different public jailbreak method which demands a separate page for it.

What has changed in iOS 9.3.3? (Classes, frameworks, etc.)

  • SBUIController's -finishLaunching ceased to exist. Consider using notifications to perform initializations of your tweaks if you were hooking this method.
com.apple.accessibility.system.app.server.ready, com.apple.frontboard.systemappservices.serverNotifyToken, SBSpringBoardDidLaunchNotification, com.apple.springboard.finishedstartup, com.apple.sharing.SpringBoard.started, com.apple.springboard.homescreenunlocked are some of the notifications to register for.