mylabels.h 501 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // mylabels.h
  3. // YBVideo
  4. //
  5. // Created by zqm on 16/8/30.
  6. // Copyright © 2016年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum
  10. {
  11. VerticalAlignmentTop = 0, // default
  12. VerticalAlignmentMiddle,
  13. VerticalAlignmentBottom,
  14. } VerticalAlignment;
  15. @interface mylabels : UILabel
  16. {
  17. @private
  18. VerticalAlignment _verticalAlignment;
  19. }
  20. @property (nonatomic) VerticalAlignment verticalAlignment;
  21. -(void)setVerticalAlignment:(VerticalAlignment)verticalAlignment;
  22. @end