JDStatusBarView.h 459 B

123456789101112131415161718
  1. //
  2. // JDStatusBarView.h
  3. // JDStatusBarNotificationExample
  4. //
  5. // Created by Markus on 04.12.13.
  6. // Copyright (c) 2013 Markus. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JDStatusBarView : UIView
  10. @property (nonatomic, strong, readonly) UILabel *textLabel;
  11. @property (nonatomic, strong, readonly) UIActivityIndicatorView *activityIndicatorView;
  12. @property (nonatomic, assign) CGFloat textVerticalPositionAdjustment;
  13. + (BOOL)isIphoneX;
  14. @end