CCControlCenterActivity.m 648 B

1234567891011121314151617181920212223242526
  1. //
  2. // CCControlCenterActivity.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/03/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "CCControlCenterActivity.h"
  9. @implementation CCControlCenterActivity
  10. - (void)viewDidLoad {
  11. [super viewDidLoad];
  12. // Custom Cell
  13. [_tableView registerNib:[UINib nibWithNibName:@"CCControlCenterTransferCell" bundle:nil] forCellReuseIdentifier:@"ControlCenterTransferCell"];
  14. _tableView.delegate = self;
  15. _tableView.dataSource = self;
  16. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  17. _tableView.backgroundColor = [UIColor greenColor];
  18. }
  19. @end