Share via


CIImage Class

Definition

Represents a set of instructions to create an image for use by CoreImage.

[Foundation.Register("CIImage", true)]
public class CIImage : Foundation.NSObject, Foundation.INSCopying, Foundation.INSSecureCoding, IDisposable
[<Foundation.Register("CIImage", true)>]
type CIImage = class
    inherit NSObject
    interface INSCoding
    interface INativeObject
    interface IDisposable
    interface INSCopying
    interface INSSecureCoding
Inheritance
CIImage
Attributes
Implements

Remarks

Unlike CoreGraphics images (CGImage) that are objects that hold the actual image data to be processed, CIImages represents a set of instructions to obtain an image. These recipes are used during the CoreImage filtering, analysis or rendering pipeline to actually create the bitmap representation.

CIImages are either the result of loading an image from disk, an NSData array, a CoreVideo buffer a CoreGraphics image, or the result of processing an image pipeline by CoreImage.

CIImages for example are used when chaining various filters (CIFilter) together and only their abstract representation is passed between the output of one filter and the input to another one. The image might not even reside in the main memory, it could reside entirely on the GPU space as an intermediate step between two filters.

Auto Enhancement Filters

The GetAutoAdjustmentFilters(CIAutoAdjustmentFilterOptions) method can be used to obtain a list of CIImage filters that can be used to correct various problems found in photos.

These typically include:

  • Adjusts the shadow details (using the CIHighlightShadowAdjust filter). :
  • Adjusts the image contrast (using the CIToneCurve filter). :
  • Adjusts the image saturation (using the CIVibrance filter). :
  • Adjusts the face color balance, adjust the tone of the skin (using the CIFaceBalance filter). :

You can configure which kind of filters you want to get or configure by setting the properties of an CIAutoAdjustmentFilterOptions instance and then calling the appropriate method.

void PrepareFixes (CIImage img)
{
var opt = new CIAutoAdjustmentFilterOptions () {
	RedEye = true,
	AutoAdjustCrop = true
};
foreach (var filter in img.GetAutoAdjustmentFilters (opt)) {
	filter.Image = img;
	img = filter.OutputImage;
}
}

Constructors

Name Description
CIImage(AVDepthData, NSDictionary)
CIImage(AVDepthData)
CIImage(AVPortraitEffectsMatte, NSDictionary)
CIImage(AVPortraitEffectsMatte)
CIImage(AVSemanticSegmentationMatte, NSDictionary)
CIImage(AVSemanticSegmentationMatte)
CIImage(CGImage, CIImageInitializationOptionsWithMetadata)

Initializes a CoreImage Image from a CoreGraphics bitmap representation

CIImage(CGImage, NSDictionary)

Initializes a CoreImage Image from a CoreGraphics bitmap representation

CIImage(CGImage)

Initializes a CoreImage Image from a CoreGraphics bitmap representation

CIImage(CGImageSource, UIntPtr, CIImageInitializationOptionsWithMetadata)
CIImage(CGImageSource, UIntPtr, NSDictionary)
CIImage(CGLayer, CIImageInitializationOptions)
CIImage(CGLayer, NSDictionary)
CIImage(CGLayer)
CIImage(CIColor)

Creates an image with infinite dimensions that is filled with the specified color.

CIImage(CVImageBuffer, CIImageInitializationOptions)

Initializes a CoreImage image from the contents of the specified CoreVideo image buffer.

CIImage(CVImageBuffer, NSDictionary<NSString,NSObject>)

Constructs a CIImage using the options in dict.

CIImage(CVImageBuffer)

Initializes a CoreImage image from the contents of the specified CoreVideo image buffer.

CIImage(CVPixelBuffer, CIImageInitializationOptions)

Constructs a CIImage using options.

CIImage(CVPixelBuffer, NSDictionary)

Constructs a CIImage from the data in buffer, applying the options specified in dict.

CIImage(CVPixelBuffer)

Constructs a CIImage with the supplied buffer data.

CIImage(ICIImageProvider, UIntPtr, UIntPtr, CIFormat, CGColorSpace, CIImageProviderOptions)
CIImage(IMTLTexture, NSDictionary)

Constructs a CIImage using the options.

CIImage(Int32, CGSize, Boolean, CGColorSpace)
CIImage(IOSurface, CIImageInitializationOptions)
CIImage(IOSurface, NSDictionary)
CIImage(IOSurface)
CIImage(NativeHandle)

A constructor used when creating managed representations of unmanaged objects. Called by the runtime.

CIImage(NSCoder)

A constructor that initializes the object from the data stored in the unarchiver object.

CIImage(NSData, CIImageInitializationOptionsWithMetadata)

Creates a new CIImage from the specified data. The image data must be premultiplied.

CIImage(NSData, IntPtr, CGSize, Int32, CGColorSpace)
CIImage(NSData, NSDictionary)

Creates a new CIImage from the specified data. The image data must be premultiplied.

CIImage(NSData)

Creates a new CIImage from the specified data. The image data must be premultiplied.

CIImage(NSImageRep)
CIImage(NSObjectFlag)

Constructor to call on derived classes to skip initialization and merely allocate the object.

CIImage(NSUrl, CIImageInitializationOptions)

Initializes a CoreImage image from the contents of the file pointed by the specified url.

CIImage(NSUrl, NSDictionary)

Initializes a CoreImage image from the contents of the file pointed by the specified url.

CIImage(NSUrl)

Initializes a CoreImage image from the contents of the file pointed by the specified url.

CIImage(UIImage, CIImageInitializationOptions)

Initializes a CoreImage image from a UIKit image.

CIImage(UIImage, NSDictionary)

Initializes a CoreImage image from a UIKit image.

CIImage(UIImage)

Initializes a CoreImage image from a UIKit image.

Properties

Name Description
AccessibilityAttributedUserInputLabels (Inherited from NSObject)
AccessibilityRespondsToUserInteraction (Inherited from NSObject)
AccessibilityTextualContext (Inherited from NSObject)
AccessibilityUserInputLabels (Inherited from NSObject)
BlackImage
BlueImage
CGImage

Copies the CIImage into a new CGImage.

Class (Inherited from NSObject)
ClassHandle

The Objective-C class handle for this class.

ClearImage
ColorSpace
ContentAverageLightLevel
ContentHeadroom
CyanImage
DebugDescription (Inherited from NSObject)
Definition
DepthData
Description (Inherited from NSObject)
EmptyImage

The empty image.

ExposedBindings (Inherited from NSObject)
Extent

Returns the extent of the image.

FormatA16
Obsolete.

Represents the value associated with the constant kCIFormatA16.

FormatA8
Obsolete.

Represents the value associated with the constant kCIFormatA8.

FormatABGR8
Obsolete.

Represents the value associated with the constant kCIFormatABGR8.

FormatAf
Obsolete.

Represents the value associated with the constant kCIFormatAf.

FormatAh
Obsolete.

Represents the value associated with the constant kCIFormatAh.

FormatARGB8
Obsolete.

Represents the value associated with the constant kCIFormatARGB8

FormatBGRA8
Obsolete.

Represents the value associated with the constant kCIFormatBGRA8

FormatL16
FormatL8
FormatLA16
FormatLA8
FormatLAf
FormatLAh
FormatLf
FormatLh
FormatR16
Obsolete.

Represents the value associated with the constant kCIFormatR16.

FormatR8
Obsolete.

Represents the value associated with the constant kCIFormatR8.

FormatRf
Obsolete.

Represents the value associated with the constant kCIFormatRf.

FormatRG16
Obsolete.

Represents the value associated with the constant kCIFormatRG16.

FormatRG8
Obsolete.

Represents the value associated with the constant kCIFormatRG8.

FormatRgb10
Obsolete.

Represents the value associated with the constant 'kCIFormatRGB10'.

FormatRGBA16
FormatRGBA8
Obsolete.

Represents the value associated with the constant kCIFormatRGBA8

FormatRGBAf
Obsolete.

Represents the value associated with the constant kCIFormatRGBAf

FormatRGBAh
Obsolete.

Represents the value associated with the constant kCIFormatRGBAh

FormatRgbX16
Obsolete.

Represents the value associated with the constant 'kCIFormatRGBX16'.

FormatRgbXf
Obsolete.

Represents the value associated with the constant 'kCIFormatRGBXf'.

FormatRgbXh
Obsolete.

Represents the value associated with the constant 'kCIFormatRGBXh'.

FormatRGf
Obsolete.

Represents the value associated with the constant kCIFormatRGf.

FormatRGh
Obsolete.

Represents the value associated with the constant kCIFormatRGh.

FormatRh
Obsolete.

Represents the value associated with the constant kCIFormatRh.

GrayImage
GreenImage
Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from NSObject)
IsDirectBinding (Inherited from NSObject)
IsProxy (Inherited from NSObject)
MagentaImage
MetalTexture
Opaque
PixelBuffer

The image data, as a CVPixelBuffer.

PortraitEffectsMatte
Properties

Gets a collection of metadata for this CIImage.

RedImage
RetainCount (Inherited from NSObject)
Self (Inherited from NSObject)
SemanticSegmentationMatte
Superclass (Inherited from NSObject)
SuperHandle

Handle used to represent the methods in the base class for this NSObject.

(Inherited from NSObject)
Url

If not null, the URL from which the image was loaded.

WhiteImage
YellowImage
Zone (Inherited from NSObject)

Methods

Name Description
AddObserver(NSObject, NSString, NSKeyValueObservingOptions, IntPtr) (Inherited from NSObject)
AddObserver(NSObject, String, NSKeyValueObservingOptions, IntPtr) (Inherited from NSObject)
AddObserver(NSString, NSKeyValueObservingOptions, Action<NSObservedChange>)

Registers an object for being observed externally using an arbitrary method.

(Inherited from NSObject)
AddObserver(String, NSKeyValueObservingOptions, Action<NSObservedChange>)

Registers an object for being observed externally using an arbitrary method.

(Inherited from NSObject)
AwakeFromNib() (Inherited from NSObject)
BeginInvokeOnMainThread(Action) (Inherited from NSObject)
BeginInvokeOnMainThread(Selector, NSObject)

Invokes asynchrously the specified code on the main UI thread.

(Inherited from NSObject)
Bind(NSString, NSObject, String, NSBindingOptions) (Inherited from NSObject)
Bind(NSString, NSObject, String, NSDictionary) (Inherited from NSObject)
CommitEditing() (Inherited from NSObject)
CommitEditing(NSObject, Selector, IntPtr) (Inherited from NSObject)
ConformsToProtocol(NativeHandle) (Inherited from NSObject)
ConvertLabToWorkingSpace()
ConvertWorkingSpaceToLab()
Copy() (Inherited from NSObject)
Copy(NSZone)

Performs a copy of the underlying Objective-C object.

CreateByApplyingGainMap(CIImage, Single)
CreateByApplyingGainMap(CIImage)
CreateByApplyingGaussianBlur(Double)

Creates a new CIImage by applying a Gaussian blur with the provided sigma.

CreateByApplyingOrientation(CGImagePropertyOrientation)
CreateByClamping(CGRect)

Creates a new CIImage of infinite extent by cropping this CIImage to the rect and then extending the pixels at the edges to infinity.

CreateByClampingToExtent()

Creates a new image by clamping the current image to the rectangle that is defined by its Extent property.

CreateByColorMatchingColorSpaceToWorkingSpace(CGColorSpace)

Creates a new CGImage by matching colors from colorSpace into the working color space.

CreateByColorMatchingWorkingSpaceToColorSpace(CGColorSpace)

Creates a new CGImage by matching colors from the working space into colors in the specified colorSpace.

CreateByCompositingOverImage(CIImage)

Creates a new image by compositing this CIImage over dest.

CreateByFiltering(String, NSDictionary)

Creates a new image by applying filterName to this CIImage.

CreateByFiltering(String)
CreateByInsertingIntermediate()
CreateByInsertingIntermediate(Boolean)
CreateByInsertingTiledIntermediate()
CreateByPremultiplyingAlpha()

Creates a new image whose RGB values are created by multiplying this image's RGB values by this image's alpha value.

CreateBySamplingLinear()
CreateBySamplingNearest()
CreateBySettingAlphaOne(CGRect)

Creates a new image by copying this, setting the alpha of pixels within extent to 1.0 and setting those outside to 0.0.

CreateBySettingContentAverageLightLevel(Single)
CreateBySettingContentHeadroom(Single)
CreateBySettingProperties(NSDictionary)

Creates a new CIImage by copying this, and applying the properties.

CreateByUnpremultiplyingAlpha()

Creates a new image whose RGB values are created by dividing this image's RGB values by this image's alpha value.

CreateWithOrientation(CIImageOrientation)

Creates a new image by applying the orientation to this CIImage.

DangerousAutorelease()

Calls the 'autorelease' selector on this object.

(Inherited from NSObject)
DangerousRelease()

Calls the 'release' selector on this object.

(Inherited from NSObject)
DangerousRetain()

Calls the 'retain' selector on this object.

(Inherited from NSObject)
DidChange(NSKeyValueChange, NSIndexSet, NSString) (Inherited from NSObject)
DidChange(NSString, NSKeyValueSetMutationKind, NSSet) (Inherited from NSObject)
DidChangeValue(String) (Inherited from NSObject)
Dispose()

Releases the resources used by the NSObject object.

(Inherited from NSObject)
Dispose(Boolean)

Releases the resources used by the NSObject object.

(Inherited from NSObject)
DoesNotRecognizeSelector(Selector) (Inherited from NSObject)
Draw(CGPoint, CGRect, NSCompositingOperation, NFloat)
Draw(CGRect, CGRect, NSCompositingOperation, NFloat)
EncodeTo(NSCoder)

Encodes the state of the object using the provided encoder.

Equals(NSObject) (Inherited from NSObject)
Equals(Object) (Inherited from NSObject)
FromCGImage(CGImage, CGColorSpace)

Creates a CIImage in colorSpace from a CGImage.

FromCGImage(CGImage, CIImageInitializationOptionsWithMetadata)

Creates a CIImage from a CGImage with the specified options.

FromCGImage(CGImage, NSDictionary)

Creates a CIImage from a CGImage with the specified metadata, d.

FromCGImage(CGImage)

Creates an CIImage from a CGImage.

FromCGImageSource(CGImageSource, UIntPtr, CIImageInitializationOptionsWithMetadata)
FromCGImageSource(CGImageSource, UIntPtr, NSDictionary)
FromData(NSData, CIImageInitializationOptionsWithMetadata)

Creates a new image from the specified data and options.

FromData(NSData, IntPtr, CGSize, CIFormat, CGColorSpace)
FromData(NSData, NSDictionary)

Creates a new image from the specified data and d options dictionary.

FromData(NSData)

Creates a new image from the specified data.

FromDepthData(AVDepthData, NSDictionary)
FromDepthData(AVDepthData)
FromImageBuffer(CVImageBuffer, CIImageInitializationOptions)

Creates a new CIImage based on the data in the imageBuffer and with the specified options.

FromImageBuffer(CVImageBuffer, NSDictionary<NSString,NSObject>)

Creates a new CIImage based on the data in imageBuffer and applying the options in dict.

FromImageBuffer(CVImageBuffer)

Creates a new CIImage based on the data in the imageBuffer.

FromImageBuffer(CVPixelBuffer, CIImageInitializationOptions)

Creates a new image from the data that is contained in buffer by using the specified options.

FromImageBuffer(CVPixelBuffer, NSDictionary)

Creates a new image from the data that is contained in buffer by using the options that are specified in dict.

FromImageBuffer(CVPixelBuffer)

Creates a new image from the data that is contained in buffer.

FromLayer(CGLayer, NSDictionary)
FromLayer(CGLayer)
FromMetalTexture(IMTLTexture, NSDictionary<NSString,NSObject>)

Creates a new CIImage from texture, applying the creation options specified in options.

FromPortraitEffectsMatte(AVPortraitEffectsMatte, NSDictionary)
FromPortraitEffectsMatte(AVPortraitEffectsMatte)
FromProvider(ICIImageProvider, UIntPtr, UIntPtr, CIFormat, CGColorSpace, CIImageProviderOptions)
FromSemanticSegmentationMatte(AVSemanticSegmentationMatte, NSDictionary)
FromSemanticSegmentationMatte(AVSemanticSegmentationMatte)
FromSurface(IOSurface, CIImageInitializationOptions)
FromSurface(IOSurface, NSDictionary)
FromSurface(IOSurface)
FromUrl(NSUrl, CIImageInitializationOptions)

Creates a new CIImage from url by using the the specified options.

FromUrl(NSUrl, NSDictionary)

Creates a new CIImage from url by using the options that are specified in d.

FromUrl(NSUrl)

Creates a new CIImage from url.

GetAutoAdjustmentFilters()

Gets the filters that are required to perform some common image correction steps to an image.

GetAutoAdjustmentFilters(CIAutoAdjustmentFilterOptions)

Gets the filters requires to perform some common image correction steps to an image.

GetBindingInfo(NSString) (Inherited from NSObject)
GetBindingOptionDescriptions(NSString) (Inherited from NSObject)
GetBindingValueClass(NSString) (Inherited from NSObject)
GetDictionaryOfValuesFromKeys(NSString[]) (Inherited from NSObject)
GetHashCode()

Generates a hash code for the current instance.

(Inherited from NSObject)
GetImageTransform(CGImagePropertyOrientation)
GetImageTransform(CIImageOrientation)

Gets a transformation that results in orientation.

GetMethodForSelector(Selector) (Inherited from NSObject)
GetNativeHash() (Inherited from NSObject)
GetRegionOfInterest(CIImage, CGRect)

Gets a rectangle that describes the region in im, an image in the transformation list, that corresponds to r in this CIImage.

ImageByApplyingTransform(CGAffineTransform, Boolean)
ImageByApplyingTransform(CGAffineTransform)

Returns a new image that results from applying the affine transform matrix to this CIImage.

ImageByCroppingToRect(CGRect)

Creates a new image by cropping this CIImage to the rectangle r.

ImageWithColor(CIColor)

Creates a new single-color image.

ImageWithTexture(UInt32, CGSize, Boolean, CGColorSpace)
Init() (Inherited from NSObject)
InitializeHandle(NativeHandle, String) (Inherited from NSObject)
InitializeHandle(NativeHandle) (Inherited from NSObject)
Invoke(Action, Double) (Inherited from NSObject)
Invoke(Action, TimeSpan) (Inherited from NSObject)
InvokeOnMainThread(Action) (Inherited from NSObject)
InvokeOnMainThread(Selector, NSObject)

Invokes synchrously the specified code on the main UI thread.

(Inherited from NSObject)
IsEqual(NSObject) (Inherited from NSObject)
IsKindOfClass(Class) (Inherited from NSObject)
IsMemberOfClass(Class) (Inherited from NSObject)
MarkDirty()

Promotes a regular peer object (IsDirectBinding is true) into a toggleref object.

(Inherited from NSObject)
MutableCopy() (Inherited from NSObject)
ObjectDidEndEditing(NSObject) (Inherited from NSObject)
ObserveValue(NSString, NSObject, NSDictionary, IntPtr) (Inherited from NSObject)
PerformSelector(Selector, NSObject, Double, NSString[]) (Inherited from NSObject)
PerformSelector(Selector, NSObject, Double) (Inherited from NSObject)
PerformSelector(Selector, NSObject, NSObject) (Inherited from NSObject)
PerformSelector(Selector, NSObject) (Inherited from NSObject)
PerformSelector(Selector, NSThread, NSObject, Boolean, NSString[]) (Inherited from NSObject)
PerformSelector(Selector, NSThread, NSObject, Boolean) (Inherited from NSObject)
PerformSelector(Selector) (Inherited from NSObject)
PrepareForInterfaceBuilder() (Inherited from NSObject)
RemoveObserver(NSObject, NSString, IntPtr) (Inherited from NSObject)
RemoveObserver(NSObject, NSString) (Inherited from NSObject)
RemoveObserver(NSObject, String, IntPtr) (Inherited from NSObject)
RemoveObserver(NSObject, String) (Inherited from NSObject)
RespondsToSelector(Selector) (Inherited from NSObject)
SetNilValueForKey(NSString) (Inherited from NSObject)
SetValueForKey(NSObject, NSString) (Inherited from NSObject)
SetValueForKeyPath(NativeHandle, NSString) (Inherited from NSObject)
SetValueForKeyPath(NSObject, NSString) (Inherited from NSObject)
SetValueForUndefinedKey(NSObject, NSString) (Inherited from NSObject)
SetValuesForKeysWithDictionary(NSDictionary) (Inherited from NSObject)
ToString()

Returns a string representation of the value of the current instance.

(Inherited from NSObject)
Unbind(NSString) (Inherited from NSObject)
ValueForKey(NSString) (Inherited from NSObject)
ValueForKeyPath(NSString) (Inherited from NSObject)
ValueForUndefinedKey(NSString) (Inherited from NSObject)
WillChange(NSKeyValueChange, NSIndexSet, NSString) (Inherited from NSObject)
WillChange(NSString, NSKeyValueSetMutationKind, NSSet) (Inherited from NSObject)
WillChangeValue(String) (Inherited from NSObject)

Operators

Name Description
Implicit(CGImage to CIImage)

Implicit constructor that wraps a CGImage as a CIImage.

Extension Methods

Name Description
ObjectDidBeginEditing(NSObject, INSEditor)
ObjectDidEndEditing(NSObject, INSEditor)
GetValidModes(NSObject, NSFontPanel)
ValidateToolbarItem(NSObject, NSToolbarItem)
BrowserAccessibilityDeleteTextAtCursor(NSObject, IntPtr)
BrowserAccessibilityInsertTextAtCursor(NSObject, String)
GetAccessibilityLineEndPositionFromCurrentSelection(NSObject)
GetAccessibilityLineRangeForPosition(NSObject, IntPtr)
GetAccessibilityLineStartPositionFromCurrentSelection(NSObject)
GetBrowserAccessibilityAttributedValue(NSObject, NSRange)
GetBrowserAccessibilityContainerType(NSObject)
GetBrowserAccessibilityCurrentStatus(NSObject)
GetBrowserAccessibilityHasDomFocus(NSObject)
GetBrowserAccessibilityIsRequired(NSObject)
GetBrowserAccessibilityPressedState(NSObject)
GetBrowserAccessibilityRoleDescription(NSObject)
GetBrowserAccessibilitySelectedTextRange(NSObject)
GetBrowserAccessibilitySortDirection(NSObject)
GetBrowserAccessibilityValue(NSObject, NSRange)
SetBrowserAccessibilityContainerType(NSObject, BEAccessibilityContainerType)
SetBrowserAccessibilityCurrentStatus(NSObject, String)
SetBrowserAccessibilityHasDomFocus(NSObject, Boolean)
SetBrowserAccessibilityIsRequired(NSObject, Boolean)
SetBrowserAccessibilityPressedState(NSObject, BEAccessibilityPressedState)
SetBrowserAccessibilityRoleDescription(NSObject, String)
SetBrowserAccessibilitySelectedTextRange(NSObject, NSRange)
SetBrowserAccessibilitySortDirection(NSObject, String)
ProvideImageData(NSObject, IntPtr, UIntPtr, UIntPtr, UIntPtr, UIntPtr, UIntPtr, NSObject)
ProvideImageToMTLTexture(NSObject, IMTLTexture, IMTLCommandBuffer, UIntPtr, UIntPtr, UIntPtr, UIntPtr, NSObject)
SetSharedObservers(NSObject, NSKeyValueSharedObserversSnapshot)
GetDebugDescription(INSObjectProtocol)
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)
AcceptsPreviewPanelControl(NSObject, QLPreviewPanel)
BeginPreviewPanelControl(NSObject, QLPreviewPanel)
EndPreviewPanelControl(NSObject, QLPreviewPanel)
GetAccessibilityCustomRotors(NSObject)

Gets the array of UIAccessibilityCustomRotor objects appropriate for this object.

SetAccessibilityCustomRotors(NSObject, UIAccessibilityCustomRotor[])

Sets the array of UIAccessibilityCustomRotor objects appropriate for this object.

AccessibilityHitTest(NSObject, CGPoint, UIEvent)
GetAccessibilityNextTextNavigationElement(NSObject)
GetAccessibilityNextTextNavigationElementBlock(NSObject)
GetAccessibilityPreviousTextNavigationElement(NSObject)
GetAccessibilityPreviousTextNavigationElementBlock(NSObject)
SetAccessibilityNextTextNavigationElement(NSObject, NSObject)
SetAccessibilityNextTextNavigationElementBlock(NSObject, AXObjectReturnBlock)
SetAccessibilityPreviousTextNavigationElement(NSObject, NSObject)
SetAccessibilityPreviousTextNavigationElementBlock(NSObject, AXObjectReturnBlock)
GetAccessibilityTextInputResponder(NSObject)
GetAccessibilityTextInputResponderHandler(NSObject)
SetAccessibilityTextInputResponder(NSObject, IUITextInput)
SetAccessibilityTextInputResponderHandler(NSObject, UITextInputReturnHandler)

Applies to

See also