码迷,mamicode.com
首页 > 其他好文 > 详细

STAlertViewDemo(仿密码修改)

时间:2014-12-05 16:55:29      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   sp   on   文件   div   2014   

效果图:

bubuko.com,布布扣

工程图:

bubuko.com,布布扣

此代码中需要引入第三方库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(仿密码修改)

标签:style   blog   http   color   sp   on   文件   div   2014   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4146978.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!