1234567891011121314151617181920212223242526 |
- #import "CCControlCenterActivity.h"
- @implementation CCControlCenterActivity
- - (void)viewDidLoad {
-
- [super viewDidLoad];
-
-
- [_tableView registerNib:[UINib nibWithNibName:@"CCControlCenterTransferCell" bundle:nil] forCellReuseIdentifier:@"ControlCenterTransferCell"];
-
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- _tableView.backgroundColor = [UIColor greenColor];
- }
- @end
|