CCControlCenterTransfer.h 448 B

1234567891011121314151617181920
  1. //
  2. // CCControlCenterTransfer.h
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/03/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CCControlCenterTransfer : UIViewController <UITableViewDataSource, UITableViewDelegate>
  10. @property NSUInteger pageIndex;
  11. @property (nonatomic, strong) NSString *pageType;
  12. @property (nonatomic, weak) IBOutlet UITableView *tableView;
  13. - (void)reloadDatasource;
  14. @end