The STSearchDirection class is an auxiliary class in which the SearchDirection enumeration type is defined. SearchDirection is an enumeration type of type NSInteger defined with NS_ENUM, which describes two directions: SearchDirectionNext and SearchDirectionPrevious.
The SearchDirection enumeration is defined as follows:
typedef NS_ENUM(NSInteger, SearchDirection) { SearchDirectionNext,
SearchDirectionPrevious
};
|
Property |
Description |
|---|---|
|
SearchDirectionNext |
Next result. |
|
SearchDirectionPrevious |
Previous result. |