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.

18 lines
427 B

  1. //
  2. // SCNightModeButton.h
  3. // SCCamera
  4. //
  5. // Created by Liu Liu on 3/19/15.
  6. // Copyright (c) 2015 Snapchat, Inc. All rights reserved.
  7. //
  8. #import <SCBase/SCMacros.h>
  9. #import <SCUIKit/SCGrowingButton.h>
  10. @interface SCNightModeButton : SCGrowingButton
  11. @property (nonatomic, assign, getter=isSelected) BOOL selected;
  12. SC_INIT_AND_NEW_UNAVAILABLE
  13. - (void)show;
  14. - (void)hideWithDelay:(BOOL)delay;
  15. - (BOOL)willHideAfterDelay;
  16. @end