Skip to content

renzifeng/ZFPhoneTransition

Repository files navigation

ZFPhoneTransition

## 特性 * 仿qq电话转场动画

要求

  • iOS 7+
  • Xcode 6+

安装

CocoaPods

pod 'ZFPhoneTransition'

效果图

图片效果演示

使用

#import "ZFPhoneTransition.h"

// Call button click event
- (void)btnOnLinePhonePressed
{
    ZFPhoneOnLineViewController *qqOnlineVC = [[ZFPhoneOnLineViewController alloc] init];
    
    if ([[UIApplication sharedApplication].keyWindow viewWithTag:PHONE_VIEW_TAG]) {
        
        qqOnlineVC.pressentType = ZFPhoneTransitionPressentTypeMask;
        
    }else {
        
        qqOnlineVC.pressentType = ZFPhoneTransitionPressentTypeNormal;
    }
    
    [self presentViewController:qqOnlineVC animated:YES completion:nil];

}

联系我

License

ZFPhoneTransition is available under the MIT license. See the LICENSE file for more info.