We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(9, {'flags': 1417693830, 'auxFlags': 1, '$class': UID(10), 'version': 2}), (10, {'$classname': 'TITextInputTraits', '$classes': ['TITextInputTraits', 'NSObject']}),
https://developer.limneos.net/?ios=17.1&framework=TextInput.framework&header=TextInput-Structs.h
typedef struct { unsigned autocapitalizationType : 2; unsigned autocorrectionType : 2; unsigned spellCheckingType : 2; unsigned keyboardType : 5; unsigned keyboardAppearance : 3; unsigned returnKeyType : 5; unsigned textScriptType : 4; unsigned enablesReturnKeyAutomatically : 1; unsigned secureTextEntry : 1; unsigned disablePrediction : 1; unsigned smartInsertDeleteType : 2; unsigned smartQuotesType : 2; unsigned smartDashesType : 2; } SCD_Struct_TI28; typedef union { long long integerValue; SCD_Struct_TI28 fields; } SCD_Union_TI29;
flags seems to be 32 bit bitfield.
auxFlags? auxillary would be 2 bit bitfield
typedef struct { unsigned inlineCompletionType : 2; } SCD_Struct_TI30; typedef union { long long integerValue; SCD_Struct_TI30 fields; } SCD_Union_TI31;
The text was updated successfully, but these errors were encountered:
https://developer.apple.com/documentation/uikit/uikeyboardtype https://developer.apple.com/documentation/uikit/uikeyboardappearance https://developer.apple.com/documentation/uikit/uireturnkeytype
some of the enums
Sorry, something went wrong.
No branches or pull requests
https://developer.limneos.net/?ios=17.1&framework=TextInput.framework&header=TextInput-Structs.h
flags seems to be 32 bit bitfield.
auxFlags? auxillary would be 2 bit bitfield
The text was updated successfully, but these errors were encountered: