码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 仿某某获取验证码方式,xib+自动布局实现

时间:2015-08-18 14:15:35      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:pop   源代码   验证码   动画   界面   

GetCodeViewController

仿某某获取验证码,并验证方式。提供很多自定义接口,高度自定义。也可以自己更改源代码,界面用xib文件,加自动布局实现,直观易懂。

运行项目,请先cd到该目录后,pod update一下,即可运行,因为用到了POP动画库。

用法

  1. 将 项目中 popCodeViewController 整个文件夹拖到你的项目里面。
  2. 导入依赖库POP动画库
  3. 自定义控制器中,导入GetCodeViewController、PresentingAnimator、DismissingAnimator类
  4. 自定义控制器中,实现以下方法
#pragma mark - GetCodeViewDelegate Method

- (NSString *)titleForCodeView {
    return [NSString stringWithFormat:@"验证码已发送至您手机187*****1234"];
}

- (NSString *)titleForCodeButton {
    return @"获取验证码";
}

- (NSInteger)timeCode {
    return 120;
}

/**
 *  可以在这个方法里面做一些网络请求操作,比如说点击重新获取验证码,
 *  成功后调用 [codeVc startTimer],开始倒计时,进行新一轮的验证码验证。
 */
- (void)getCodeButton:(GetCodeViewController *)codeVc {
    [codeVc startTimer];
}

- (BOOL)isStart {
    return NO;
}

- (void)cancelButton:(GetCodeViewController *)codeVc {
    [codeVc dismissViewControllerAnimated:YES completion:nil];
}

- (void)sureButton:(GetCodeViewController *)codeVc {
    NSLog(@"确 定");
}

#pragma mark - UIViewControllerTransitioningDelegate

- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented
                                                                  presentingController:(UIViewController *)presenting
                                                                      sourceController:(UIViewController *)source
{
    return [PresentingAnimator new];
}

- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed
{
    return [DismissingAnimator new];
}

5.调用,实现以下代码即可

    GetCodeViewController *getCodeViewController = [GetCodeViewController new];
    getCodeViewController.delegate = self;
    getCodeViewController.transitioningDelegate = self;
    getCodeViewController.modalPresentationStyle = UIModalPresentationCustom;
    [self presentViewController:getCodeViewController
                                            animated:YES
                                          completion:NULL];

版本

支持iOS7.0及以上。

效果图

技术分享

github地址:https://github.com/804145113/GetCodeViewController

版权声明:本文为博主原创文章,未经博主允许不得转载。

IOS 仿某某获取验证码方式,xib+自动布局实现

标签:pop   源代码   验证码   动画   界面   

原文地址:http://blog.csdn.net/tangxianhai/article/details/47750097

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