|
@@ -14,7 +14,7 @@
|
|
|
#import "UserMusicFormalModel.h"
|
|
|
#import "KSBaseWKWebViewController.h"
|
|
|
#import "MineWorksBottomView.h"
|
|
|
-#import "KSNewAlertView.h"
|
|
|
+#import "MergeTipsAlert.h"
|
|
|
#import "KSDraftMergeViewController.h"
|
|
|
#import "MineWorkSortView.h"
|
|
|
#import "KSSmallChoosePicker.h"
|
|
@@ -35,7 +35,7 @@
|
|
|
|
|
|
@property (nonatomic, strong) MineWorksBottomView *bottomView;
|
|
|
|
|
|
-@property (nonatomic, strong) KSNewAlertView *alertView;
|
|
|
+@property (nonatomic, strong) MergeTipsAlert *alertView;
|
|
|
|
|
|
@property (nonatomic, assign) NSInteger chooseCount;
|
|
|
|
|
@@ -431,10 +431,11 @@
|
|
|
{
|
|
|
if (self.chooseCount) {
|
|
|
MJWeakSelf;
|
|
|
- self.alertView = [KSNewAlertView shareInstance];
|
|
|
- [self.alertView configTitle:@"确认删除吗?" descMessage:@"" leftButtonTitle:@"取消" rightButtonTitle:@"确认" leftButtonAction:^{
|
|
|
+ self.alertView = [MergeTipsAlert shareInstance];
|
|
|
+ [self.alertView configWithDesc:@"确认删除作品吗?" leftTitle:@"取消" rightTitle:@"确认"];
|
|
|
+ [self.alertView actionCallbackCancel:^{
|
|
|
|
|
|
- } rightButtonAction:^{
|
|
|
+ } sure:^{
|
|
|
[weakSelf removeDraft];
|
|
|
}];
|
|
|
[self.alertView showAlert];
|