Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
SemanticsObjectContainer Class Reference

#include <SemanticsObject.h>

Inheritance diagram for SemanticsObjectContainer:

Instance Methods

(instancetype) - NS_UNAVAILABLE
 
(instancetype) - initWithAccessibilityContainer:
 
(instancetype) - initWithSemanticsObject:
 

Class Methods

(instancetype) + NS_UNAVAILABLE
 

Properties

SemanticsObjectsemanticsObject
 

Detailed Description

Represents a semantics object that has children and hence has to be presented to the OS as a UIAccessibilityContainer.

The SemanticsObject class cannot implement the UIAccessibilityContainer protocol because an object that returns YES for isAccessibilityElement cannot also implement UIAccessibilityContainer.

With the help of SemanticsObjectContainer, the hierarchy of semantic objects received from the framework, such as:

SemanticsObject1 SemanticsObject2 SemanticsObject3 SemanticsObject4

is translated into the following hierarchy, which is understood by iOS:

SemanticsObjectContainer1 SemanticsObject1 SemanticsObjectContainer2 SemanticsObject2 SemanticsObject3 SemanticsObject4

From Flutter's view of the world (the first tree seen above), we construct iOS's view of the world (second tree) as follows: We replace each SemanticsObjects that has children with a SemanticsObjectContainer, which has the original SemanticsObject and its children as children.

SemanticsObjects have semantic information attached to them which is interpreted by VoiceOver (they return YES for isAccessibilityElement). The SemanticsObjectContainers are just there for structure and they don't provide any semantic information to VoiceOver (they return NO for isAccessibilityElement).

Definition at line 227 of file SemanticsObject.h.

Method Documentation

◆ initWithAccessibilityContainer:

- (instancetype) initWithAccessibilityContainer: (id NS_UNAVAILABLE

◆ initWithSemanticsObject:

- (instancetype) initWithSemanticsObject: (SemanticsObject *)  NS_DESIGNATED_INITIALIZER

◆ NS_UNAVAILABLE [1/2]

- (instancetype) NS_UNAVAILABLE

◆ NS_UNAVAILABLE [2/2]

+ (instancetype) NS_UNAVAILABLE

Property Documentation

◆ semanticsObject

- (SemanticsObject*) semanticsObject
readwritenonatomicweak

Definition at line 233 of file SemanticsObject.h.


The documentation for this class was generated from the following file: