UIAlertViewDelegate定义的常用方法 1 // Called when a button is clicked. The view will be automatically dismissed after this call returns 2 //当用户单击警告框中得某个按钮时激...
分类:
其他好文 时间:
2015-08-09 20:22:32
阅读次数:
165
iOS 开发中经常会遇到需要弹窗提示的情况(这个再浏览器端我们经常会遇到)
如下图:
这个是怎么实现的了?
其实很简单iOS提供一个类 UIAlertView
我们使用他即可
UIAlertView *alertV=[[UIAlertView alloc]initWithTitle:@"alert标题" message:@"alertMesaage" delega...
分类:
移动开发 时间:
2015-07-29 23:13:01
阅读次数:
259
一些Swift小知识点的整理之前最开始了解Swift的时候的一些基本的东西,简单的整理一下。import UIKit
var names = []
class ViewController: UIViewController,UIAlertViewDelegate { override func viewDidLoad() {
super.viewDidLoad()...
分类:
编程语言 时间:
2015-07-29 12:12:56
阅读次数:
139
IOS中UIAlertView(警告框)常用方法总结 一、初始化方法 - (instancetype)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id /*<UIAlertViewDelegate>*/)delegate cancelButtonTitle:(N...
分类:
移动开发 时间:
2015-05-02 09:57:12
阅读次数:
144
1 #import "AppDelegate.h" 2 3 @interface AppDelegate () // 签UIAlertViewDelegate协议 4 // 协议方法按住comm键,用鼠标点进去看 5 @end 6 @implementation AppDelegate 7 -...
分类:
其他好文 时间:
2015-05-01 14:38:47
阅读次数:
379
ViewController.h中的代码如下:#import @interface ViewController : UIViewController @end ViewController.m中的详细代码:- (void)viewDidLoad { [super vie...
分类:
其他好文 时间:
2015-04-29 11:29:37
阅读次数:
186
首先,视图控制器必须得实现协议UIAlertViewDelegate中的方法,并指定delegate为self,才能使弹出的Alert窗口响应点击事件。具体代码如下:ViewController.h中的代码如下:[cpp] view plaincopy#import @interface V...
分类:
其他好文 时间:
2015-02-06 14:40:08
阅读次数:
192
1:先遵守UIAlertViewDelegate
2:- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex==0) {
NSLog(@"你点击了取消");
}else
if (buttonIndex=...
分类:
移动开发 时间:
2015-01-15 16:05:32
阅读次数:
172
在这里我用到了视图库里的Navigation Controller导航控制器。
提醒操作主要用到了UIAlertviewDelegate协议中的alertView:clickButtonAtIndex:方法实现,其语法形式如下:
- (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)butto...
分类:
移动开发 时间:
2014-12-03 19:20:13
阅读次数:
247
ios代理类总结一下。今后多看看UITextViewDelegateUIToolbarDelegateUITextInputDelegateUITextFieldDelegateUIWebViewDelegateNSLayoutManagerDelegate//UIActionSheet//UIActionSheetDelegate要放弃//UIAlertView要放弃//UIAlertViewDelegate//优先使用preferred//UIAlertCon..
分类:
移动开发 时间:
2014-11-25 18:51:17
阅读次数:
194