12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #import <Foundation/Foundation.h>
- @interface LBXAlertAction : NSObject
- + (void)showAlertWithTitle:(NSString*)title
- msg:(NSString*)message
- buttonsStatement:(NSArray<NSString*>*)arrayItems
- chooseBlock:(void (^)(NSInteger buttonIdx))block;
- + (void)showActionSheetWithTitle:(NSString*)title
- message:(NSString*)message
- cancelButtonTitle:(NSString*)cancelString
- destructiveButtonTitle:(NSString*)destructiveButtonTitle
- otherButtonTitle:(NSArray<NSString*>*)otherButtonArray
- chooseBlock:(void (^)(NSInteger buttonIdx))block;
- @end
|