// // LXActionSheet.h // LXActionSheetDemo // // Created by lixiang on 14-3-10. // Copyright (c) 2014年 lcolco. All rights reserved. // #import @class LXActionSheet; @protocol LXActionSheetDelegate @optional - (void)didClickOnButtonIndex:(LXActionSheet*)sender buttonIndex:(int)buttonIndex; - (void)didClickOnDestructiveButton; - (void)didClickOnCancelButton; @end @interface LXActionSheet : UIView - (id)initWithTitle:(NSString *)title delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle otherButtonTitles:(NSArray *)otherButtonTitlesArray; - (void)showInView:(UIView *)view; @end