CCControlCenterActivity.h 431 B

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