CCOfflinePageContent.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. #import "UIScrollView+EmptyDataSet.h"
  11. #import "TWMessageBarManager.h"
  12. #import "AHKActionSheet.h"
  13. #import "CCCellOffline.h"
  14. #import "CCUtility.h"
  15. #import "CCCoreData.h"
  16. #import "CCMain.h"
  17. #import "CCGraphics.h"
  18. #import "CCAccountWeb.h"
  19. #import "CCBancomat.h"
  20. #import "CCCartaDiCredito.h"
  21. #import "CCCartaIdentita.h"
  22. #import "CCContoCorrente.h"
  23. #import "CCNote.h"
  24. #import "CCPassaporto.h"
  25. #import "CCPatenteGuida.h"
  26. @interface CCOfflinePageContent : UITableViewController <UITableViewDataSource, UITableViewDelegate, UIDocumentInteractionControllerDelegate, UIActionSheetDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate, CCAccountWebDelegate, CCBancomatDelegate, CCCartaDiCreditoDelegate, CCCartaIdentitaDelegate, CCContoCorrenteDelegate, CCNoteDelegate, CCPassaportoDelegate, CCPatenteGuidaDelegate>
  27. @property NSUInteger pageIndex;
  28. @property (nonatomic, strong) NSString *pageType;
  29. @property (nonatomic, strong) CCMetadata *metadata;
  30. @property (nonatomic, strong) NSString *fileIDPhoto;
  31. @property (nonatomic, strong) NSString *directoryIDPhoto;
  32. @property (nonatomic, strong) NSString *localServerUrl;
  33. @property (nonatomic, weak) CCDetail *detailViewController;
  34. @property (nonatomic, strong) UIDocumentInteractionController *docController;
  35. @end