12345678910111213141516171819202122232425262728293031 |
- /**
- * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
- #import "DateHeaderView.h"
- @interface DateHeaderView ()
- @property (strong, nonatomic) IBOutlet UIView *contentView;
- @end
- @implementation DateHeaderView
- - (instancetype)init
- {
- self = [super init];
-
- if (self) {
- [[NSBundle mainBundle] loadNibNamed:@"DateHeaderView" owner:self options:nil];
-
- [self addSubview:self.contentView];
-
- self.contentView.frame = self.bounds;
- }
-
- return self;
- }
- @end
|