2014 snapchat source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
562 B

  1. //
  2. // SCFeatureNightMode.h
  3. // SCCamera
  4. //
  5. // Created by Kristian Bauer on 4/9/18.
  6. //
  7. #import "SCFeature.h"
  8. @class SCNavigationBarButtonItem, SCPreviewPresenter;
  9. /**
  10. * Public interface for interacting with camera night mode feature.
  11. * User spec: https://snapchat.quip.com/w4h4ArzcmXCS
  12. */
  13. @protocol SCFeatureNightMode <SCFeature>
  14. @property (nonatomic, weak, readwrite) SCPreviewPresenter *previewPresenter;
  15. @property (nonatomic, readonly) SCNavigationBarButtonItem *navigationBarButtonItem;
  16. - (void)interruptGestures;
  17. - (void)hideWithDelayIfNeeded;
  18. @end