CCControlCenterActivity.h 539 B

123456789101112131415161718192021
  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 : UICollectionViewController <UICollectionViewDataSource, UICollectionViewDelegate>
  10. @property NSUInteger pageIndex;
  11. @property (nonatomic, strong) NSDate *storeDateFirstActivity;
  12. @property (nonatomic, strong) NSString *pageType;
  13. - (void)reloadDatasource;
  14. + (CGFloat)getLabelHeight:(UILabel*)label width:(int)width;
  15. @end