[DWBasicAlertAction showAlertWithTitle:@"Alert" message:@"DWBasicAlertAction" cancelButtonTitle:@"cancel" otherButtonTitles:@[@"item1",@"item2",@"item3",@"item4",@"item5",@"item6"] chooseBlock:^(NSInteger buttonIdx) {
NSLog(@"click buttonIdx:%ld",buttonIdx);
}];
[DWBasicAlertAction showActionSheetWithTitle:@"ActionSheet" message:@"DWBasicAlertAction" cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Destrutive" otherButtonTitles:@[@"item1",@"item2",@"item3",@"item4",@"item5",@"item6"] chooseBlock:^(NSInteger buttonIdx) {
NSLog(@"click buttonIdx:%ld",buttonIdx);
}];
Latest version: 1.0.2
pod search DWBasicAlertAction
If you cannot search out the latest version, try:
pod setup
We recommend to use the latest release in cocoapods.
-
1.0.2 修复在弹窗代理中调用无法生效的BUG
-
1.0.1 support for cocoapods