HeaderWithButton.h 305 B

12345678910111213
  1. /**
  2. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <UIKit/UIKit.h>
  6. @interface HeaderWithButton : UIView
  7. @property (weak, nonatomic) IBOutlet UILabel *label;
  8. @property (weak, nonatomic) IBOutlet UIButton *button;
  9. @end