| 12345678910111213141516 |
- //
- // CustomActionSheet.h
- // zhuxun
- //
- // Created by winsoft on 16/7/15.
- //
- //
- #import <UIKit/UIKit.h>
- @interface CustomActionSheet : UIActionSheet
- - (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionSheetDelegate>)delegate object:(id)object indexPath:(NSIndexPath *)indexPath cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ...;
- @property (nonatomic, weak)NSIndexPath *indexPath;
- @property (nonatomic, weak)id object;
- @end
|