//// UIActionSheet+Blocks.h// Shibui//// Created by Jiva DeVoe on 1/5/11.// Copyright 2011 Random Ideas, LLC. All rights reserved.//#import <UIKit/UIKit.h>#import "RIButtonItem.h"@interfaceUIActionSheet(Blocks)<UIActionSheetDelegate>-(id)initWithTitle:(NSString*)inTitlecancelButtonItem:(RIButtonItem*)inCancelButtonItemdestructiveButtonItem:(RIButtonItem*)inDestructiveItemotherButtonItems:(RIButtonItem*)inOtherButtonItems,...NS_REQUIRES_NIL_TERMINATION;-(NSInteger)addButtonItem:(RIButtonItem*)item;/** This block is called when the action sheet is dismssed for any reason. */@property(copy,nonatomic)void(^dismissalAction)();@end