效果图:
工程图:
此代码中需要引入第三方库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){ //执行服务器修改代码的函数 }]; }
时间: 2024-11-01 23:08:57