MKActionSheet 毛玻璃效果底部彈出控件

MKActionSheet

github : https://github.com/mk2016/MKActionSheet

多樣式 ActionSheet

  • 高斯模糊效果
  • 支持橫屏
  • 支持無標題、無取消按鈕樣式
  • 支持帶默認選中模式
  • 支持多選模式
  • 支持帶 icon 圖片樣式
  • 支持多按鈕,可設置最大顯示數量(支持小數),超過最大數量滾動
  • 支持 Model 或 NSDictionary 數組初始化
  • 支持 block
  • 支持動態添加 button
  • 支持動態 修改 titleView

先上效果圖

image
image

使用

  • cocoapods
    pod 'MKActionSheet', '~> 2.0.2'

  • Manually (手動導入)
    只需將 MKActionSheet 文件添加到項目中即可

  • 依賴
    Masonry ~> 1.0.2
    SDWebImage ~> 4.0.0

用法 詳細用法參見demo

1.4.0 版本之后 化煩為簡 去除 delegate 用法, 適配到iOS8。 需要delegate或者想支持iOS7可以使用V1.3.2版本。
2.0.1 版本重構了代碼,后支持橫屏 和之前版本有較大差異,舊版升級上來的請檢查是否需要修改你的代碼
有使用者反饋,status bar原來白色會變為黑色,這是由于新建了 window 導致的。 可以將 currentVC 設置為當前 viewController
//單選 block
- (void)showWithBlock:(MKActionSheetBlock)block;
//多選 block
- (void)showWithMultiselectBlock:(MKActionSheetMultiselectBlock)multiselectblock;
枚舉
  • selectType
 typedef NS_ENUM(NSInteger, MKActionSheetSelectType) {
    MKActionSheetSelectType_common  = 1,        //default
    MKActionSheetSelectType_selected,           //have a selected button
    MKActionSheetSelectType_multiselect,        //multiselect
};
  • button title Alignment
typedef NS_ENUM(NSInteger, MKActionSheetButtonTitleAlignment) {
    MKActionSheetButtonTitleAlignment_center    = 1,        //default
    MKActionSheetButtonTitleAlignment_left,
    MKActionSheetButtonTitleAlignment_right,
};
  • button image value type
typedef NS_ENUM(NSInteger, MKActionSheetButtonImageValueType) {
   MKActionSheetButtonImageValueType_none      = 1,        //default
   MKActionSheetButtonImageValueType_image,
   MKActionSheetButtonImageValueType_name,
   MKActionSheetButtonImageValueType_url,
};
  • 普通樣式,多參數初始化
   MKActionSheet *sheet = [[MKActionSheet alloc] initWithTitle:@"title" buttonTitleArray:@[@"button0", @"button1", @"button2"]];
        [sheet showWithBlock:^(MKActionSheet *actionSheet, NSInteger buttonIndex) {
        }];
  • 對象數組初始化,支持 model 和 NSDictionary 數組。titleKey是對象中用來顯示按鈕title對應的字段。
  MKActionSheet *sheet = [[MKActionSheet alloc] initWithTitle:@" titiititititiit " objArray:self.modelArray buttonTitleKey:@"titleStr" selectType:MKActionSheetSelectType_multiselect];
            [sheet showWithMultiselectBlock:^(MKActionSheet *actionSheet, NSArray *array) {
            NSLog(@"array:%@",array);
        }];
  • 帶icon圖標的樣式
 MKActionSheet *sheet = [[MKActionSheet alloc] initWithTitle:nil objArray:self.modelArray buttonTitleKey:@"titleStr" imageKey:@"imageName" imageValueType:MKActionSheetButtonImageValueType_name];
        [sheet showWithBlock:^(MKActionSheet *actionSheet, NSInteger buttonIndex) {
        }];
        

MKActionSheet *sheet = [[MKActionSheet alloc] initWithTitle:@"load url image" objArray:self.dicArray buttonTitleKey:@"titleStr" imageKey:@"imageUrl" imageValueType:MKActionSheetButtonImageValueType_url selectType:MKActionSheetSelectType_multiselect];
        [sheet showWithMultiselectBlock:^(MKActionSheet *actionSheet, NSArray *array) {
            NSLog(@"array:%@",array);
            [weakSelf.view makeToast:[NSString stringWithFormat:@"array count : %ld ",(unsigned long)array.count]];
        }];

可以根據自己的需求定制UI

/**  custom UI */
@property (nonatomic, assign) CGFloat windowLevel;          /*!< default: UIWindowLevelStatusBar - 1 */
@property (nonatomic, weak) UIViewController *currentVC;    /*!< current viewController, for statusBar keep the same style */
@property (nonatomic, assign) BOOL enabledForBgTap;         /*!< default: YES */
@property (nonatomic, assign) BOOL manualDismiss;           /**  [default: NO]. if set 'YES', you need calling the method of 'dismiss' to hide actionSheet by manual */

/** action sheet */
@property (nonatomic, assign) CGFloat animationDuration;            /*!< 動畫化時間 [default: 0.3f] */
@property (nonatomic, assign) CGFloat blurOpacity;                  /*!< 毛玻璃透明度 [default: 0.3f] */
@property (nonatomic, assign) CGFloat blackgroundOpacity;           /*!< 灰色背景透明度 [default: 0.3f] */

//title
@property (nonatomic, strong) UIColor *titleColor;                  /*!< 標題顏色 [default: RGBA(100.0f, 100.0f, 100.0f, 1.0f)]*/
@property (nonatomic, strong) UIFont *titleFont;                    /*!< 標題字體 [default: sys 14] */
@property (nonatomic, assign) CGFloat titleMargin;                  /*!< title side spacee [default: 20] */

//button
@property (nonatomic, strong) UIColor *buttonTitleColor;            /*!< 按鈕 titile 顏色 [default:RBGA(51.0f, 51.0f, 51.0f, 1.0f)] */
@property (nonatomic, strong) UIFont  *buttonTitleFont;             /*!< 按鈕 字體 [default: sys 18] */
@property (nonatomic, assign) CGFloat buttonOpacity;                /*!< 按鈕透明度 [default: 0.6] */
@property (nonatomic, assign) CGFloat buttonImageRightSpace;        /*!< 帶圖片樣式 圖片右邊離 title 的距離 [default: 12.f] */

//destructive Button
@property (nonatomic, assign) NSInteger destructiveButtonIndex;     /*!< [default:-1]*/
@property (nonatomic, strong) UIColor *destructiveButtonTitleColor; /*!< [default:RBGA(250.0f, 10.0f, 10.0f, 1.0f)]*/

//cancel Title
@property (nonatomic, assign) BOOL needCancelButton;                /*!< 是否需要取消按鈕 */
@property (nonatomic, copy) NSString *cancelTitle;                 /*!< cancel button title [dafault:取消] */


//MKActionSheetSelectType_selected
@property (nonatomic, assign) NSInteger selectedIndex;              /*!< selected button index */
@property (nonatomic, copy) NSString *selectedBtnImageName;         /*!< image name for selected button  */

//MKActionSheetSelectType_multiselect
@property (nonatomic, copy) NSString *selectBtnImageNameNormal;     /*!< image name for select button normal state */
@property (nonatomic, copy) NSString *selectBtnImageNameSelected;   /*!< image name for select button selected state )*/
@property (nonatomic, strong) NSString *multiselectConfirmButtonTitle;      /*!< confirm button title */
@property (nonatomic, strong) UIColor *multiselectConfirmButtonTitleColor;  /*!< confirm button title color */
@property (nonatomic, strong) UIImage *placeholderImage;

建議可以根據需求自定義幾種樣式的類調用方法,在項目中直接使用。例:

+ (void)sheetWithTitle:(NSString *)title buttonTitleArray:(NSArray *)buttonTitleArray destructiveButtonIndex:(NSInteger)destructiveButtonIndex block:(MKActionSheetBlock)block{
    MKActionSheet *sheet = [[MKActionSheet alloc] initWithTitle:title buttonTitleArray:buttonTitleArray];
    sheet.needCancelButton = YES;
    sheet.buttonTitleFont = [UIFont systemFontOfSize:17];
    sheet.buttonTitleColor = [UIColor redColor];
    sheet.buttonOpacity = 1;
    sheet.buttonHeight = 40.0f;
    sheet.destructiveButtonTitleColor = [UIColor grayColor];
    sheet.animationDuration = 0.2f;
    sheet.blackgroundOpacity = 0.0f;
    sheet.blurOpacity = 0.7f;
    sheet.tag = 200;
    [sheet showWithBlock:block];
}
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容