首页 > 代码库 > STAlertViewDemo(仿密码修改)

STAlertViewDemo(仿密码修改)

效果图:

工程图:

此代码中需要引入第三方库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){                                            //执行服务器修改代码的函数                                                                                    }];    }

 

STAlertViewDemo(仿密码修改)