CustomActionSheet.h 553 B

12345678910111213141516
  1. //
  2. // CustomActionSheet.h
  3. // zhuxun
  4. //
  5. // Created by winsoft on 16/7/15.
  6. //
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CustomActionSheet : UIActionSheet
  10. - (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionSheetDelegate>)delegate object:(id)object indexPath:(NSIndexPath *)indexPath cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ...;
  11. @property (nonatomic, weak)NSIndexPath *indexPath;
  12. @property (nonatomic, weak)id object;
  13. @end