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