首页 > 代码库 > 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(仿密码修改)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。