iOS仿微信弹出框LPActionSheet

Posted 蚊香酱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS仿微信弹出框LPActionSheet相关的知识,希望对你有一定的参考价值。

ios仿微信弹出框LPActionSheet

LPActionSheet是一款轻量级的仿微信弹出框

安装

从CocoaPods安装

CocoaPods可以优雅地管理第三方库(具体使用方式我在另一篇文章有详细介绍,这里不再赘述)

  • 第一步: 在Podfile文件中写入如下代码
pod 'LPActionSheet', '~> 1.0'
  • 第二步: 将文件安装进项目中
pod install
从Github上手动添加
  • 第一步: 到 这里 下载代码文件,将LPActionSheet/LPActionSheet文件夹拖到项目中
  • 第二步: 将头文件加入项目中 #import “LPActionSheet.h”

如何使用LPActionSheet

你可以像这样实例化一个对象 (该方法为指定初始化器,其他初始化方法都会调用该方法,NS_DESIGNATED_INITIALIZER)

- (instancetype)initWithTitle:(NSString *)title
            cancelButtonTitle:(NSString *)cancelButtonTitle
       destructiveButtonTitle:(NSString *)destructiveButtonTitle
            otherButtonTitles:(NSArray *)otherButtonTitles
                      handler:(LPActionSheetBlock)actionSheetBlock NS_DESIGNATED_INITIALIZER;

你可以像这样快速返回一个实例化对象

+ (instancetype)actionSheetWithTitle:(NSString *)title
                   cancelButtonTitle:(NSString *)cancelButtonTitle
              destructiveButtonTitle:(NSString *)destructiveButtonTitle
                   otherButtonTitles:(NSArray *)otherButtonTitles
                             handler:(LPActionSheetBlock)actionSheetBlock;

使用如下方法弹出该视图

- (void)show;

终极解决方案 (推荐)

+ (void)showActionSheetWithTitle:(NSString *)title
               cancelButtonTitle:(NSString *)cancelButtonTitle
          destructiveButtonTitle:(NSString *)destructiveButtonTitle
               otherButtonTitles:(NSArray *)otherButtonTitles
                         handler:(LPActionSheetBlock)actionSheetBlock;

Demo

[LPActionSheet showActionSheetWithTitle:@"This is a title, you can show some prompt here"
                      cancelButtonTitle:@"Cancel"
                 destructiveButtonTitle:@"Destructive"
                      otherButtonTitles:@[@"First choice", @"Second choice", @"Third choice"]
                                handler:^(LPActionSheet *actionSheet, NSInteger index) 
        NSLog(@"%ld", index);
];

竖屏

横屏

后续更新

该框架后续会在Github上维护更新,欢迎关注

https://github.com/wenxiangjiang/LPActionSheet

以上是关于iOS仿微信弹出框LPActionSheet的主要内容,如果未能解决你的问题,请参考以下文章

Android 仿微信点赞和评论弹出框

微信小程序自定义弹窗wcPop插件|仿微信弹窗样式

微信弹出框提醒费标准端口或非微信官方网页解决

原生wcPop.js消息提示框(移动端)内含仿微信弹窗效果

react native仿微信性别选择-自定义弹出框

qt实现微信弹出其他选项