IOS 对话框(UIAlertView)
文章平均质量分 68
我的日子里
学以致用
展开
-
iOS--自定义提示框
自定义提示框1、新建一个类,命名为:PopAlterView,继承于UIView,然后添加如下代码:#import @interface PopAlterView : UIView@property (strong, nonatomic) UIView *transparentView;@property (strong, nonatomic) UIView *alterVi转载 2015-10-23 11:46:11 · 949 阅读 · 0 评论 -
UI基础:UIActionSheet和UIAlterView
iOS系统中有提供了两个弹出视图的控件,分别是UIActionSheet和UIAlterView.效果图如下: 主要代码如下: 1 - (void)viewDidLoad { 2 [super viewDidLoad]; 3 // Do any additional setup after loading the view, typicall转载 2015-10-23 11:50:33 · 458 阅读 · 0 评论 -
IOS--UIAlertViewDelegate对对话框的事件处理方法
- (IBAction)onDialog:(id)sender { // UIAlertView * alertView=[[UIAlertView alloc] initWithTitle:@"Hello" message:@"你好呀" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:@"取消", n原创 2015-10-24 23:46:27 · 439 阅读 · 0 评论 -
IOS-- UIAlertView(对话框)
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [superviewDidLoad]; // Do any原创 2015-10-24 23:25:46 · 385 阅读 · 0 评论 -
UIALertView的基本用法与UIAlertViewDelegate对对话框的事件处理方法
首先,视图控制器必须得实现协议UIAlertViewDelegate中的方法,并指定delegate为self,才能使弹出的Alert窗口响应点击事件。具体代码如下:ViewController.h中的代码如下:[cpp] view plaincopy#import @interface ViewCon转载 2015-12-03 21:43:00 · 260 阅读 · 0 评论