先上效果图
效果一:
只需要在控制里边上写上,轻轻松松
HHShowView *showView = [HHShowView alertTitle:@"有点意思"message:@"你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢"];
[showView addAction:[HHAlertAction actionTitle:@"确定"style:HHAlertActionConfirm handler:^(HHAlertAction *action) {
NSLog(@"确定确定确定确定");
}]];
[showView show];
效果二:
HHShowView *showView = [HHShowView alertTitle:@"有点意思"message:@"你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢你觉得呢"];
showView.butttonCancelBgColor = [UIColor orangeColor];
[showView addAction:[HHAlertAction actionTitle:@"取消"style:HHAlertActionCancel handler:^(HHAlertAction *action) {
NSLog(@"取消取消取消取消");
}]];
[showView addAction:[HHAlertAction actionTitle:@"确定"style:HHAlertActionConfirm handler:^(HHAlertAction *action) {
NSLog(@"确定确定确定确定");
}]];
[showView show];