欢迎光临
我们一直在努力

CustomAlertView

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

CustomAlertView

项目介绍:

自定义的提醒对话框 (AlertView),主要代码如下:

[Objective-C] 查看源文件 复制代码

#import "ViewController.h"
#import "ProfileAlertView.h"

@interface ViewController ()<confirmButtonClickDelegate>

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    UIButton *alertButton = [[UIButton alloc] initWithFrame:CGRectMake((ScreenWidth - 200)/2, 100, 200, 80)];
    alertButton.backgroundColor = [UIColor redColor];
    [alertButton addTarget:self action:@selector(alertButtonClick) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:alertButton];
}
- (void) alertButtonClick{
    
    ProfileAlertView *alertView = [[ProfileAlertView alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight)withGroupNumber:10];
    alertView.delegate = self;
    alertView.backgroundColor = [UIColor colorWithRed:10.f/255 green:10.f/255 blue:10.f/255 alpha:0.7];
    [self.view.window addSubview:alertView];
}
- (void) confirmButtonDidCilckedIsSetChat:(BOOL) isChat {
    NSLog(@"%d",isChat);
}

@end



CustomAlertView.zip
(37.21 KB, 下载次数: 484)

2016-7-25 20:22 上传
点击文件名下载附件

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