UIActionSheet+NTESBlock.h 384 B

123456789101112131415
  1. //
  2. // UIActionSheet+NTESBlock.h
  3. // eim_iphone
  4. //
  5. // Created by amao on 12-11-23.
  6. // Copyright (c) 2012年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^ActionSheetBlock)(NSInteger);
  10. @interface UIActionSheet (NTESBlock)<UIActionSheetDelegate>
  11. - (void)showInView: (UIView *)view completionHandler: (ActionSheetBlock)block;
  12. - (void)clearActionBlock;
  13. @end