网站/小程序/APP个性化定制开发,二开,改版等服务,加扣:8582-36016

可自行选择输入模式textField

应用介绍

    定制的Alertview,不用写代理不用实例化,包含输入框的模式,输入框可自行选择输入模式,包含订制textField。 [ZPAlertView showAlertTitle:@"编辑短信内容" andMsg:@"编辑短信内容" cancelButtonTitle:@"取消" otherButtonTitles:@"确定" andBlock:^(NSInteger index,id contxt){ if (index == 1) {///确定的tag 值 ///做你想做的事 } }]; ZPTextField *textField = [[ZPTextField alloc] initWithFrame:CGRectMake(50, 50, 200, 50)]; textField.NBregEx = REGEX_POWER_TELPHOONE_NUMBER; [self.view addSubview:textField]; 请把代码粘贴在这里 //展示 ADlertView + (ZPAlertView *) showAlertTitle:(NSString*)title andMsg:(NSString*)msg cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles andBlock:(AlertViewBlock)block{ if (!_sharedADlertView) { _sharedADlertView = [[ZPAlertView alloc] initWith:title andMsg:msg cancelButtonTitle:cancelButtonTitle otherButtonTitles:otherButtonTitles andBlock:block]; } else{ [_sharedADlertView showAlertView:title andMsg:msg cancelButtonTitle:cancelButtonTitle otherButtonTitles:otherButtonTitles andBlock:block]; } return _sharedADlertView; }

    立即下载

    请到会员中心签到后即可获得免费下载!

    相关下载

    评论 共有 0 条评论

    暂无评论
    0
    0
    0
    立即
    投稿
    发表
    评论
    返回
    顶部