CCOfflinePageContent.h 475 B

12345678910111213141516171819202122
  1. //
  2. // CCOfflinePageContent.h
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CCDetail.h"
  10. @interface CCOfflinePageContent : UITableViewController
  11. @property NSUInteger pageIndex;
  12. @property (nonatomic, strong) NSString *pageType;
  13. @property (nonatomic, weak) CCDetail *detailViewController;
  14. @property (nonatomic, strong) UIDocumentInteractionController *docController;
  15. @end