Plane2Controller.h 638 B

123456789101112131415161718192021222324252627
  1. //
  2. // Plane2Controller.h
  3. // animatedemo
  4. //
  5. // Created by 7yword on 16/7/11.
  6. // Copyright © 2016年 7yworld. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol Plane2ControllerDelegate <NSObject>
  10. @required
  11. - (void)plane2AnimationFinished;
  12. @end
  13. @interface Plane2Controller : UIViewController<CAAnimationDelegate>
  14. @property (nonatomic, weak) id<Plane2ControllerDelegate> delegate;
  15. @property (nonatomic, copy) NSString *senderNameStr;
  16. @property (weak, nonatomic) IBOutlet UIView *contrainerView;
  17. @property (weak, nonatomic) IBOutlet UILabel *senderNameLabel;
  18. @end