Guest User

Untitled

a guest
Jan 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. @interface UILabelStrikethrough : UILabel {
  2. int xOffset;
  3. int yOffset;
  4. int widthOffset;
  5. int stroke;
  6. UIColor* strokeColor;
  7. }
  8. @property (nonatomic) int xOffset;
  9. @property (nonatomic) int yOffset;
  10. @property (nonatomic) int widthOffset;
  11. @property (nonatomic) int stroke;
  12. @property (nonatomic,retain) UIColor* strokeColor;
  13.  
  14. -(id) initWithFrame:(CGRect)frame xOffset:(int)_xOffset yOffset:(int)_yOffset widthOffset:(int)_widthOffset stroke:(int)_stroke strokeColor:(UIColor*)_strokeColor;
  15. @end
Add Comment
Please, Sign In to add comment