import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) { // 创建 let alertController = UIAlertController(title: "提示&qu…
自iOS8起,苹果就建议告警框使用UIAlertController来代替UIAlertView.下面总结了一些常见的用法: 1,简单的应用(同时按钮响应Handler使用闭包函数)    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 import UIKit   class ViewController: UIViewController ,UIActionSheetDelegate {  …
// 选择提示框 DownloadView *vc = [[DownloadView alloc] initWithFrame:CGRectMake(, , SCREEN_WIDTH, SCREEN_HEIGHT)]; [vc show]; UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"当前GPRS网络,确定要下载吗?"…
iOS 8 之前提示框主要使用 UIAlertView和UIActionSheet:iOS 9 将UIAlertView和UIActionSheet合二为一为:UIAlertController . 这下让已经习惯的我一下子变的不习惯,这样也好,正好再学习一些新的东西: 先上一段代码: -(void)setupReminder { //STEP 1 NSString *title = @"提示"; NSString *message = @"请输入用户名和密码";…
 (本文系转载) 因为个人项目中有一个提交表单成功弹出框的需求,从网上找了一些资料,发现toastr这个插件的样式还是不错的.所以也给大家推荐下,但是网上的使用资料不是很详细,所以整理了一下,希望能给大家带来帮助. toastr 官网http://codeseven.github.io/toastr/ 这个样式插件支持直接导cdn入链接,但是我尝试了一下cdn加载速度太慢,所以推荐直接下载文件后导入文件 个人演示地址,因为把js放在了头部所以加载时间可能有点长,而且我发现自己的服务器不是很稳定,…
import UIKit class ViewController: UIViewController ,UIActionSheetDelegate{ @IBAction func btn1(_ sender: UIButton) { label1.text="文本显示" let alertController = UIAlertController(title: "修改文本", message: nil, preferredStyle: UIAlertContro…
package cc.jiusansec.www; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button;…
jquery仿alert提示框.confirm确认对话框.prompt带输入的提示框插件实例演示 第一步:引入所需要的jquery插件文件: http://www.angelweb.cn/Inc/eg/jquery.alerts.js 第二步:引入所需的样式: #popup_container {font-family: Arial, sans-serif;font-size: 12px;min-width: 300px;max-width: 600px;background:#FFF;bord…
一.awt的一些组件 Label l1=new Label("姓名:"); //标签 Label l2=new Label("密码:"); TextField tf1=new TextField(20); //文本框,数字是设置其文本框长度 TextField tf2=new TextField(20); Button b1=new Button("确定"); //按钮 Button b2=new Button("取消");…
ios 8 以后苹果官方建议使用UIAlertController这个类,所以专门去网上找资料,了解了下用法, 1.创建一个alertController let alertController = UIAlertController(title: "系统提示", message: "您确定要离开吗?", preferredStyle: .alert) let cancelAction = UIAlertAction(title: "取消", s…