NumLockButton.h 581 B

12345678910111213141516171819202122
  1. //
  2. // NumLockButton.h
  3. // numLockTest
  4. //
  5. // Created by banbu01 on 15-2-5.
  6. // Copyright (c) 2015年 com.koochat.test0716. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NumLockButton : UIButton
  10. @property (nonatomic, readonly, assign) NSUInteger number;
  11. @property (nonatomic, readonly, copy) NSString *letters;
  12. @property (nonatomic, strong) UILabel *numberLabel;
  13. @property (nonatomic, strong) UILabel *lettersLabel;
  14. @property (nonatomic, strong) UIColor *backgroundColorBackup;
  15. - (instancetype)initWithNumber:(NSUInteger)number letters:(NSString *)letters;
  16. @end