SWActionSheet 2.h 456 B

12345678910111213141516171819
  1. //
  2. // Created by Petr Korolev on 11/08/14.
  3. //
  4. #import <Foundation/Foundation.h>
  5. #import <UIKit/UIKit.h>
  6. @interface SWActionSheet : UIView
  7. @property(nonatomic, strong) UIView *bgView;
  8. - (void)dismissWithClickedButtonIndex:(int)i animated:(BOOL)animated;
  9. - (void)showFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated;
  10. - (instancetype)initWithView:(UIView *)view windowLevel:(UIWindowLevel)windowLevel;
  11. - (void)showInContainerView;
  12. @end