• iOS开发之弹出输入框


    最近项目里有个需求要弹出输入框,GitHub上搜了一圈没发现太合适的轮子,就自个儿撸了一个,传送门在这里https://github.com/wozyao/ZYInputAlert,有需要的同学可以down下来跑一下,用法比较简单。

     

    __weak typeof(self) weakSelf = self;

     

    ZYInputAlertView *alertView = [ZYInputAlertView alertView];

    alertView.placeholder = @"输入开心的事儿···";[alertView confirmBtnClickBlock:^(NSString *inputString) {

        weakSelf.inputLabel.text = inputString;

    }];

    [alertView show];


    alert.gif
  • 相关阅读:
    安装和使用git遇到的问题总结
    继承时,构造函数和析构函数的调用顺序
    c++文件的读写
    虚函数
    纯虚函数
    继承
    连接到github
    NDK无法包含std的头文件(string,list等)的解决方法
    Centos7.3安装maven并配置加速镜像源
    分享几个实用好看的WordPress主题(第二波)
  • 原文地址:https://www.cnblogs.com/LiLihongqiang/p/7085261.html
Copyright © 2020-2023  润新知