123456789101112131415161718 |
- //
- // JDStatusBarView.h
- // JDStatusBarNotificationExample
- //
- // Created by Markus on 04.12.13.
- // Copyright (c) 2013 Markus. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface JDStatusBarView : UIView
- @property (nonatomic, strong, readonly) UILabel *textLabel;
- @property (nonatomic, strong, readonly) UIActivityIndicatorView *activityIndicatorView;
- @property (nonatomic, assign) CGFloat textVerticalPositionAdjustment;
- + (BOOL)isIphoneX;
- @end
|