RGLDocumentView
Objective-C
@interface RGLDocumentView : UIImageView
@property(nonatomic, weak, nullable) id<RGLDocumentViewDataSource> dataSource;
@property(nonatomic, strong) UIImage * _Nullable helpAnimationImage;
@property(nonatomic, strong) UIImage * _Nullable multipageFrontAnimationImage;
@property(nonatomic, strong) UIImage * _Nullable multipageBackAnimationImage;
@property(nonatomic, assign) UIViewContentMode helpAnimationImageContentMode;
@property(nonatomic, assign) UIViewContentMode multipageAnimationFrontImageContentMode;
@property(nonatomic, assign) UIViewContentMode multipageAnimationBackImageContentMode;
@property(nonatomic, assign) BOOL useFlipMultipageAnimation;
- (instancetype _Nonnull)initWithStartPosition:(RGLDocumentViewPosition)position;
- (void)startHelpAnimationWithCompletion:(RGLCompletion _Nullable)completion;
- (void)changePositionToDocumentViewPosition:(RGLDocumentViewPosition)documentPosition;
- (void)nextPageAnimationStart;
@end
Swift
class DocumentView : UIImageView
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, weak, nullable) id<RGLDocumentViewDataSource> dataSourceSwift
weak var dataSource: RGLDocumentViewDataSource? { get set } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong) UIImage * _Nullable helpAnimationImageSwift
var helpAnimationImage: UIImage? { get set } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong) UIImage * _Nullable multipageFrontAnimationImageSwift
var multipageFrontAnimationImage: UIImage? { get set } -
Undocumented
Declaration
Objective-C
@property(nonatomic, strong) UIImage * _Nullable multipageBackAnimationImageSwift
var multipageBackAnimationImage: UIImage? { get set } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign) UIViewContentMode helpAnimationImageContentModeSwift
var helpAnimationImageContentMode: UIView.ContentMode { get set } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign) UIViewContentMode multipageAnimationFrontImageContentModeSwift
var multipageAnimationFrontImageContentMode: UIView.ContentMode { get set } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign) UIViewContentMode multipageAnimationBackImageContentModeSwift
var multipageAnimationBackImageContentMode: UIView.ContentMode { get set } -
Undocumented
Declaration
Objective-C
@property(nonatomic, assign) BOOL useFlipMultipageAnimationSwift
var useFlipMultipageAnimation: Bool { get set } -
Undocumented
Declaration
Objective-C
- (instancetype _Nonnull)initWithStartPosition:(RGLDocumentViewPosition)position;Swift
init(start position: DocumentViewPosition) -
Undocumented
Declaration
Objective-C
- (void)startHelpAnimationWithCompletion:(RGLCompletion _Nullable)completion;Swift
func startHelpAnimation() async -
Undocumented
Declaration
Objective-C
- (void)changePositionToDocumentViewPosition:(RGLDocumentViewPosition)documentPosition;Swift
func changePosition(to documentPosition: DocumentViewPosition) -
Undocumented
Declaration
Objective-C
- (void)nextPageAnimationStart;Swift
func nextPageAnimationStart()