标签:style blog http color sp on 文件 div 2014
效果图:
工程图:
此代码中需要引入第三方库STAlertView。
代码:
RootViewController.h
#import <UIKit/UIKit.h> //加入头文件 #import "STAlertView.h" @interface RootViewController : UIViewController { STAlertView *stAlertView; } @end
RootViewController.m
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { stAlertView = [[STAlertView alloc] initWithTitle:@"验证密码" message:nil textFieldHint:@"请输入你的密码" textFieldValue:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确定" cancelButtonBlock:^{ } otherButtonBlock:^(NSString * result){ //执行服务器修改代码的函数 }]; }
标签:style blog http color sp on 文件 div 2014
原文地址:http://www.cnblogs.com/yang-guang-girl/p/4146978.html