欢迎光临
我们一直在努力

各种功能弹出框

建站超值云服务器,限时71元/月

各种功能弹出框

项目介绍:

项目简介
强大的易于使用的提示框或者弹出框,应用于控制器或者窗口,支持模糊效果,自定义视图,自定义动画,使用自动布局,支持iphone和ipad。

CocoaPods

pod ‘TYAlertController’
截屏

使用方法

1.将TYAlertController文件夹复制到你的项目,如果你想要模糊效果,只要把Blur Effects Folder复制到你的项目中即可。

2.当你使用本项目时,#import “UIView+TYAlertView.h”,如果你想要模糊效果,那么#import “TYAlertController+BlurEffects.h”

3.你可以使用TYAlertController在控制器中展示,使用TYShowAlertView在窗口中展示,或者使用CategoryUIView+TYAlertView方便的显示提示框

使用方法demo

提示框周期阻塞

// alertView lifecycle block
@property (copy, nonatomic) void (^viewWillShowHandler)(UIView *alertView);
@property (copy, nonatomic) void (^viewDidShowHandler)(UIView *alertView);
@property (copy, nonatomic) void (^viewWillHideHandler)(UIView *alertView);
@property (copy, nonatomic) void (^viewDidHideHandler)(UIView *alertView);

// dismiss controller completed block
@property (nonatomic, copy) void (^dismissComplete)(void);
在控制器中展示

TYAlertView *alertView = [TYAlertView alertViewWithTitle:@”TYAlertView” message:@”This is a message, the alert view containt text and textfiled. “];

[alertView addAction:[TYAlertAction actionWithTitle:@"取消" style:TYAlertActionStyleCancle handler:^(TYAlertAction *action) {
    NSLog(@"%@",action.title);
}]];

[alertView addAction:[TYAlertAction actionWithTitle:@"确定" style:TYAlertActionStyleDestructive handler:^(TYAlertAction *action) {
    NSLog(@"%@",action.title);
}]];

[alertView addTextFieldWithConfigurationHandler:^(UITextField *textField) {
    textField.placeholder = @"请输入账号";
}];
[alertView addTextFieldWithConfigurationHandler:^(UITextField *textField) {
    textField.placeholder = @"请输入密码";
}];

// first way to show
TYAlertController *alertController = [TYAlertController alertControllerWithAlertView:alertView preferredStyle:TYAlertControllerStyleAlert];
//alertController.alertViewOriginY = 60;
[self presentViewController:alertController animated:YES completion:nil];

// second way to show,use UIView Category
//[alertView showInController:self preferredStyle:TYAlertControllerStyleAlert];

在窗口中展示

TYAlertView *alertView = [TYAlertView alertViewWithTitle:@”TYAlertView” message:@”A message should be a short, but it can support long message”];

[alertView addAction:[TYAlertAction actionWithTitle:@"取消" style:TYAlertActionStyleCancle handler:^(TYAlertAction *action) {
    NSLog(@"%@",action.title);
}]];

[alertView addAction:[TYAlertAction actionWithTitle:@"确定" style:TYAlertActionStyleDestructive handler:^(TYAlertAction *action) {
    NSLog(@"%@",action.title);
}]];

// first way to show ,use UIView Category
[alertView showInWindowWithOriginY:200 backgoundTapDismissEnable:YES];

// second way to show

// [TYShowAlertView showAlertViewWithView:alertView originY:200 backgoundT

github地址:https://github.com/12207480/TYAlertController

code4app

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 各种功能弹出框
分享到: 更多 (0)