No Description

XHViewState.h 591B

12345678910111213141516171819202122
  1. //
  2. // XHViewState.h
  3. // XHImageViewer
  4. //
  5. // Created by 曾 宪华 on 14-2-17.
  6. // Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface XHViewState : UIView
  10. @property (nonatomic, strong) UIView *superview;
  11. @property (nonatomic, assign) CGRect frame;
  12. @property (nonatomic, assign) BOOL userInteratctionEnabled;
  13. @property (nonatomic, assign) CGAffineTransform transform;
  14. + (XHViewState *)viewStateForView:(UIView *)view;
  15. - (void)setStateWithView:(UIView *)view;
  16. @end