ios-AlertView.zip

时间:2022-07-31 13:51:14
【文件属性】:

文件名称:ios-AlertView.zip

文件大小:42KB

文件格式:ZIP

更新时间:2022-07-31 13:51:14

弹出视图

该提示框简单,好用,几句代码就可完成调用。 主要代码: 用法: 将封装的View导入。然后按照demo中的写就可以。 下方主要使用代码: 这是添加的方法: ConfigueAlertView *alertView = [[ConfigueAlertView 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]; [[UIApplication sharedApplication].keyWindow addSubview:alertView]; 这是点击按钮的代理方法: -(void)ButtonDidCilckedWithCancleOrConfirm:(NSString *)states IsRemberMyChose:(BOOL)myChose { NSLog(@"%d",myChose); if ([states isEqualToString:@"cancle"]) { //点击取消按钮 }else { //点击确定按钮 根据存储的内容对以后是否显示该控件进行判断 if (myChose == YES) { //记住我的选择 //将NSString 对象存储到 NSUserDefaults 中 NSString *remember = @"remember"; NSUserDefaults *user = [NSUserDefaults standardUserDefaults]; [user setObject:remember forKey:@"userChose"]; }else { } } }


【文件预览】:
LYXAlertView
----LYXAlertView()
--------Assets.xcassets()
--------main.m(339B)
--------ConfigueAlertView.m(7KB)
--------矩形-33@2x.png(1015B)
--------AppDelegate.h(282B)
--------AppDelegate.m(2KB)
--------Base.lproj()
--------ConfigueAlertView.h(2KB)
--------矩形-34@3x.png(1KB)
--------矩形-33@3x.png(1KB)
--------ViewController.h(220B)
--------矩形-34@2x.png(1KB)
--------Info.plist(1KB)
--------ViewController.m(2KB)
----LYXAlertView.xcodeproj()
--------project.xcworkspace()
--------project.pbxproj(22KB)
--------xcuserdata()
----.DS_Store(6KB)
----LYXAlertViewTests()
--------LYXAlertViewTests.m(919B)
--------Info.plist(733B)
----LYXAlertViewUITests()
--------Info.plist(733B)
--------LYXAlertViewUITests.m(1KB)

网友评论

相关文章