JXLabel.h 412 B

1234567891011121314151617181920
  1. //
  2. // JXLabel.h
  3. // sjvodios
  4. //
  5. // Created by on 12-2-1.
  6. // Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXLabel : UILabel {
  10. NSObject *_delegate;
  11. }
  12. @property (nonatomic, weak) NSObject* delegate;
  13. @property (nonatomic, assign) SEL didTouch;
  14. @property (nonatomic, assign) BOOL changeAlpha;
  15. @property (nonatomic, assign) int line;
  16. @end