Mac Cocoa |
Author |
Message |
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
|
Back to top |
|
|
delovski
Joined: 14 Jun 2006 Posts: 3524 Location: Zagreb
|
Posted: Fri May 29, 2009 4:13 pm Post subject: |
|
|
adc - Keyboard Notification User Info Keys
"UIKeyboardBoundsUserInfoKey - The key for an NSValue object containing
a CGRect that identifies the bounds rectangle of the keyboard. This value is
sufficient for obtaining the size of the keyboard. If you want to get the origin
of the keyboard on the screen (before or after animation) use the values ob-
tained from the user info dictionary through the UIKeyboardCenterBeginUs-
erInfoKey or UIKeyboardCenterEndUserInfoKey constants." |
|
Back to top |
|
|
Ike Kapetan
Joined: 17 Jun 2006 Posts: 3136 Location: Europe
|
Posted: Sat Sep 25, 2021 6:08 pm Post subject: |
|
|
adc - NSEventModifierFlags
Code: | typedef enum NSEventModifierFlags : NSUInteger {
...
} NSEventModifierFlags; |
Event Modifier Flags:
NSEventModifierFlagCapsLock - The Caps Lock key has been pressed.
NSEventModifierFlagShift - The Shift key has been pressed.
NSEventModifierFlagControl - The Control key has been pressed.
NSEventModifierFlagOption - The Option or Alt key has been pressed.
NSEventModifierFlagCommand - The Command key has been pressed.
NSEventModifierFlagNumericPad - A key in the numeric keypad or an arrow
key has been pressed.
NSEventModifierFlagHelp - The Help key has been pressed.
NSEventModifierFlagFunction - A function key has been pressed.
NSEventModifierFlagDeviceIndependentFlagsMask - Device-independent
modifier flags are masked.
Deprecated:
NSAlphaShiftKeyMask - The Caps Lock key has been pressed.
... |
|
Back to top |
|
|
|