• UIAlertViewController+TextField 输入框


        if (IOS8) {
            UIAlertController *alertController=[UIAlertController alertControllerWithTitle:CustomLocalizedString(@"SetIp", nil) message:@"" preferredStyle:UIAlertControllerStyleAlert];
            [alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
                NSString *string=[[NSUserDefaults standardUserDefaults]stringForKey:KSETIP];
                [textField setText:string.length>0?string:@""];
               
            }];
            UIAlertAction *action=[UIAlertAction actionWithTitle:CustomLocalizedString(@"OK", nil) style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
                str_ip=[alertController.textFields firstObject].text;
                 NSLog(@"设置的Ip=%@",str_ip);
                [[NSUserDefaults standardUserDefaults]setObject:str_ip forKey:KSETIP];
                [[NSUserDefaults standardUserDefaults]synchronize];
            }];
            UIAlertAction *action_cancel=[UIAlertAction actionWithTitle:CustomLocalizedString(@"Cancel", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
                [self dismissViewControllerAnimated:YES completion:nil];
            }];
            [alertController addAction:action];
            [alertController addAction:action_cancel];
            [self presentViewController:alertController animated:YES completion:nil];
           
        }

  • 相关阅读:
    axios 讲解 和vue搭建使用
    在过去一年中做了很多项目。纪念一下
    使用vue遇到坑
    python 学习总结
    webpack 学习
    gulp-rev 添加版本号
    解决微信转发到朋友圈没有获取页面头像以图标展示。
    对象-数组-字符串:
    mobiscroll时间控件
    Chrome Adobe flash player已过期怎么办
  • 原文地址:https://www.cnblogs.com/niit-soft-518/p/5044867.html
Copyright © 2020-2023  润新知