Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
UIKit.framework/Notifications: Difference between revisions - iPhone Development Wiki

UIKit.framework/Notifications: Difference between revisions

From iPhone Development Wiki
m (Created page with '== Local Notifications == {| class="wikitable sortable" |- ! Name !! object & userInfo !! Firmware |- | UIApplicationSuspendedNotification || - || 2.0 – |- | [http://www.devwor…')
 
(Fix links and change "object & userInfo" to "description" so most of the notifications no longer have "See reference.")
 
Line 2: Line 2:
{| class="wikitable sortable"
{| class="wikitable sortable"
|-
|-
! Name !! object & userInfo !! Firmware
! Name !! Description !! Firmware
|-
|-
| UIApplicationSuspendedNotification || - || 2.0 –
| UIApplicationSuspendedNotification || - || 2.0 –
|-
|-
| [http://www.devworld.apple.com/iphone/library/documentation/UIKit/Reference/UIApplication_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006728-CH3-SW42 UIApplicationDidFinishLaunchingNotification] || See reference. || 2.0 –
| [https://developer.apple.com/documentation/uikit/uiapplicationdidfinishlaunchingnotification UIApplicationDidFinishLaunchingNotification] || Posts after app launches. || 2.0 –
|-
|-
| [http://developer.apple.com/iphone/library/documentation/uikit/reference/UIDevice_Class/Reference/UIDevice.html#//apple_ref/doc/uid/TP40006902-CH3-SW26 UIDeviceBatteryLevelDidChangeNotification] || See reference. || 3.0 —  
| [https://developer.apple.com/documentation/uikit/uidevicebatteryleveldidchangenotification UIDeviceBatteryLevelDidChangeNotification] ||Posts when battery level changes. || 3.0 —  
|-
|-
| UIKeyboardCurrentInputModeDidChangeNotification || ''object'' of this notification is the [[UIKeyboardImpl]] shared instance. || 2.0 –
| UIKeyboardCurrentInputModeDidChangeNotification || ''object'' of this notification is the [[UIKeyboardImpl]] shared instance. || 2.0 –
Line 16: Line 16:
| UITextSelectionWillScroll || - || 3.0 –
| UITextSelectionWillScroll || - || 3.0 –
|-  
|-  
| [http://developer.apple.com/iphone/library/documentation/uikit/reference/UIWindow_Class/UIWindowClassReference/UIWindowClassReference.html#//apple_ref/doc/uid/TP40006817-CH3-SW15 UIWindowDidBecomeVisibleNotification] || See reference. || 2.0 –
| [https://developer.apple.com/documentation/uikit/uiwindowdidbecomevisiblenotification UIWindowDidBecomeVisibleNotification] || Posts when UIWindow is shown. || 2.0 –
|-
|-
| [http://developer.apple.com/iphone/library/documentation/uikit/reference/UIWindow_Class/UIWindowClassReference/UIWindowClassReference.html#//apple_ref/doc/uid/TP40006817-CH3-SW10 UIWindowDidResignKeyNotification] || See reference || 2.0 –
| [https://developer.apple.com/documentation/uikit/uiwindowdidresignkeynotification UIWindowDidResignKeyNotification] ||Posts when UIWindow is no longer main window. || 2.0 –
|-
|-
| [http://developer.apple.com/iphone/library/documentation/uikit/reference/UIWindow_Class/UIWindowClassReference/UIWindowClassReference.html#//apple_ref/doc/uid/TP40006817-CH3-SW17 UIWindowDidBecomeKeyNotification] || See reference || 2.0 –
| [https://developer.apple.com/documentation/uikit/uiwindowdidbecomekeynotification UIWindowDidBecomeKeyNotification] || Posts when UIWindow is the main window. || 2.0 –
|-
|-
| [http://developer.apple.com/iphone/library/documentation/uikit/reference/UIWindow_Class/UIWindowClassReference/UIWindowClassReference.html#//apple_ref/doc/uid/TP40006817-CH3-SW16 UIWindowDidBecomeHiddenNotification] || See reference. || 2.0 –
| [https://developer.apple.com/documentation/uikit/uiwindowdidbecomehiddennotification UIWindowDidBecomeHiddenNotification] || Posts when UIWindow becomes hidden. || 2.0 –
|-
|-
| [http://www.devworld.apple.com/iphone/library/documentation/UIKit/Reference/UIApplication_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006728-CH3-SW58 UIApplicationDidBecomeActiveNotification] || See reference. || 2.0 –
| [https://developer.apple.com/documentation/uikit/uiapplicationdidbecomeactivenotification UIApplicationDidBecomeActiveNotification] || Posts when app becomes active. || 2.0 –
|}
|}



Latest revision as of 13:34, 28 May 2021

Local Notifications

Name Description Firmware
UIApplicationSuspendedNotification - 2.0 –
UIApplicationDidFinishLaunchingNotification Posts after app launches. 2.0 –
UIDeviceBatteryLevelDidChangeNotification Posts when battery level changes. 3.0 —
UIKeyboardCurrentInputModeDidChangeNotification object of this notification is the UIKeyboardImpl shared instance. 2.0 –
UIKeyboardCandidateCorrectionDidChangeNotification userInfo may contain a key correction, whose value is a UIAutocorrectInlinePrompt. 3.0 –
UITextSelectionWillScroll - 3.0 –
UIWindowDidBecomeVisibleNotification Posts when UIWindow is shown. 2.0 –
UIWindowDidResignKeyNotification Posts when UIWindow is no longer main window. 2.0 –
UIWindowDidBecomeKeyNotification Posts when UIWindow is the main window. 2.0 –
UIWindowDidBecomeHiddenNotification Posts when UIWindow becomes hidden. 2.0 –
UIApplicationDidBecomeActiveNotification Posts when app becomes active. 2.0 –

Darwin Notifications

Name Firmware
__UIKitDesktopImageChangedNotification 2.0 –
AppleKeyboardsPreferencesChangedNotification 2.0 –
com.apple.UIHierarchyDump.finished 2.0 –
com.apple.UIScreenDump.finished 2.0 –