OliveappMouthLayer.h 490 B

123456789101112131415161718192021
  1. //
  2. // OliveappMouthLayer.h
  3. // AppSampleYitu
  4. //
  5. // Created by Xiaoyang Lin on 17/2/8.
  6. // Copyright © 2017年 Oliveapp. All rights reserved.
  7. //
  8. #import <QuartzCore/QuartzCore.h>
  9. @interface OliveappMouthLayer : CALayer
  10. - (void)animationFadeIn: (CGFloat) scale
  11. withDuration: (CGFloat) duration
  12. withDelay: (CGFloat) delay;
  13. - (void)animationFadeOut: (CGFloat) scale
  14. withDuration: (CGFloat) duration
  15. withDelay: (CGFloat) delay;
  16. @end