RGLDocumentViewDataSource

Objective-C

@protocol RGLDocumentViewDataSource <NSObject>
- (UIView *_Nonnull)parentView:(RGLDocumentView *_Nullable)documentView;
- (UIView *_Nonnull)mainParentView:(RGLDocumentView *_Nullable)documentView;
- (CGFloat)parentViewYMultiplier:(RGLDocumentView *_Nullable)documentView;
@end

Swift

protocol RGLDocumentViewDataSource : NSObjectProtocol

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (UIView *_Nonnull)parentView:(RGLDocumentView *_Nullable)documentView;

    Swift

    func parentView(_ documentView: DocumentView?) -> UIView
  • Undocumented

    Declaration

    Objective-C

    - (UIView *_Nonnull)mainParentView:(RGLDocumentView *_Nullable)documentView;

    Swift

    func mainParentView(_ documentView: DocumentView?) -> UIView
  • Undocumented

    Declaration

    Objective-C

    - (CGFloat)parentViewYMultiplier:(RGLDocumentView *_Nullable)documentView;

    Swift

    func parentViewYMultiplier(_ documentView: DocumentView?) -> CGFloat