YBIBInteractionProfile.m 472 B

12345678910111213141516171819202122232425
  1. //
  2. // YBIBInteractionProfile.m
  3. // YBImageBrowserDemo
  4. //
  5. // Created by 波儿菜 on 2019/6/30.
  6. // Copyright © 2019 杨波. All rights reserved.
  7. //
  8. #import "YBIBInteractionProfile.h"
  9. @implementation YBIBInteractionProfile
  10. - (instancetype)init {
  11. self = [super init];
  12. if (self) {
  13. _disable = NO;
  14. _dismissScale = 0.22;
  15. _dismissVelocityY = 800;
  16. _restoreDuration = 0.15;
  17. _triggerDistance = 3;
  18. }
  19. return self;
  20. }
  21. @end