StrikeThroughLabel.h 337 B

12345678910111213141516171819
  1. //
  2. // StrikeThroughLabel.h
  3. // StrikeThroughLabelExample
  4. //
  5. // Created by Scott Hodgin on 12/14/10.
  6. // Copyright (c) 2010 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface StrikeThroughLabel : UILabel {
  10. BOOL _strikeThroughEnabled;
  11. }
  12. @property (nonatomic) BOOL strikeThroughEnabled;
  13. @end