iOS开发-自定义UIAlterView(iOS 7)

简介:

App中不可能少了弹框,弹框是交互的必要形式,使用起来也非常简单,不过最近需要自定义一个弹框,虽然iOS本身的弹框已经能满足大部分的需求,但是不可避免还是需要做一些自定义的工作。iOS7之前是可以自定义AlterView的,就是继承一下UIAlterView,然后初始化的时候通过addSubview添加自定义的View,但是iOS7之后这样做就不行了,不过还好有开源项目可以解决这个问题。

iOS默认弹框

viewDidLoad中添加两个按钮,代码如下:

 

1
2
3
4
5
6
7
8
9
10
11
12
13
UIButton  *orignalBtn=[[UIButton alloc]initWithFrame:CGRectMake(100, 40, 100, 50)];
[orignalBtn setBackgroundColor:[UIColor greenColor]];
[orignalBtn setTitle:@ "iOS弹框"  forState:UIControlStateNormal];
[orignalBtn addTarget: self  action: @selector (orignalShow) forControlEvents:UIControlEventTouchUpInside];
[ self .view addSubview:orignalBtn];
 
 
 
UIButton  *customlBtn=[[UIButton alloc]initWithFrame:CGRectMake(100, 140, 100, 50)];
[customlBtn setBackgroundColor:[UIColor redColor]];
[customlBtn setTitle:@ "自定义弹框"  forState:UIControlStateNormal];
[customlBtn addTarget: self  action: @selector (customShow) forControlEvents:UIControlEventTouchUpInside];
[ self .view addSubview:customlBtn];

 

 响应默认弹框事件:

1
2
3
4
-( void )orignalShow{
     UIAlertView *alterView=[[UIAlertView alloc]initWithTitle:@ "提示"  message:@ "博客园-Fly_Elephant"  delegate: self  cancelButtonTitle:@ "取消"  otherButtonTitles:@ "确定" nil ];
     [alterView show];
}

  效果如下:

 

自定义弹框

主要解决iOS7之后的系统无法自定义弹框的问题,使用开源项目,项目地址:https://github.com/wimagguc/ios-custom-alertview,其实就是自定义了一个类:

CustomIOSAlertView.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#import <UIKit/UIKit.h>
 
@protocol  CustomIOSAlertViewDelegate
 
- ( void )customIOS7dialogButtonTouchUpInside:( id )alertView clickedButtonAtIndex:( NSInteger )buttonIndex;
 
@end
 
@interface  CustomIOSAlertView : UIView<CustomIOSAlertViewDelegate>
 
@property  ( nonatomic , retain) UIView *parentView;     // The parent view this 'dialog' is attached to
@property  ( nonatomic , retain) UIView *dialogView;     // Dialog's container view
@property  ( nonatomic , retain) UIView *containerView;  // Container within the dialog (place your ui elements here)
 
@property  ( nonatomic , assign)  id <CustomIOSAlertViewDelegate> delegate;
@property  ( nonatomic , retain)  NSArray  *buttonTitles;
@property  ( nonatomic , assign)  BOOL  useMotionEffects;
 
@property  ( copy void  (^onButtonTouchUpInside)(CustomIOSAlertView *alertView,  int  buttonIndex) ;
 
- ( id )init;
 
/*!
  DEPRECATED: Use the [CustomIOSAlertView init] method without passing a parent view.
  */
- ( id )initWithParentView: (UIView *)_parentView __attribute__ (( deprecated ));
 
- ( void )show;
- ( void )close;
 
- ( IBAction )customIOS7dialogButtonTouchUpInside:( id )sender;
- ( void )setOnButtonTouchUpInside:( void  (^)(CustomIOSAlertView *alertView,  int  buttonIndex))onButtonTouchUpInside;
 
- ( void )deviceOrientationDidChange: ( NSNotification  *)notification;
- ( void )dealloc;
 
@end

CustomIOSAlertView.m

调用代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
-( void )customShow{
     CustomIOSAlertView *alertView = [[CustomIOSAlertView alloc] init];
     
     [alertView setContainerView:[ self  customView]];
     
     [alertView setButtonTitles:[ NSMutableArray  arrayWithObjects:@ "取消" , @ "确定" nil ]];
     [alertView setDelegate: self ];
     
     [alertView setOnButtonTouchUpInside:^(CustomIOSAlertView *alertView,  int  buttonIndex) {
         NSString  *result=alertView.buttonTitles[buttonIndex];
         NSLog (@ "点击了%@按钮" ,result);
         [alertView close];
     }];
     
     [alertView setUseMotionEffects: true ];
     [alertView show];
 
}
 
- (UIView *)customView
{
     UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 240, 160)];
     
     UILabel *tip=[[UILabel alloc]initWithFrame:CGRectMake(100, 10, 50, 30)];
     [tip setText:@ "提示" ];
     [customView addSubview:tip];
     
     
     UILabel *content=[[UILabel alloc]initWithFrame:CGRectMake(10, 60, 210, 30)];
     [content setText:@ "http://www.cnblogs.com/xiaofeixiang" ];
     [content setFont:[UIFont systemFontOfSize:12]];
     [customView addSubview:content];
     return  customView;
}

 效果如下:

 本文转自Fly_Elephant博客园博客,原文链接:http://www.cnblogs.com/xiaofeixiang/p/4453819.html,如需转载请自行联系原作者

相关文章
|
8天前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
1天前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。
|
16天前
|
安全 数据处理 Swift
深入探索iOS开发中的Swift语言特性
本文旨在为开发者提供对Swift语言在iOS平台开发的深度理解,涵盖从基础语法到高级特性的全面分析。通过具体案例和代码示例,揭示Swift如何简化编程过程、提高代码效率,并促进iOS应用的创新。文章不仅适合初学者作为入门指南,也适合有经验的开发者深化对Swift语言的认识。
36 9
|
12天前
|
设计模式 Swift iOS开发
探索iOS开发:从基础到高级,打造你的第一款App
【10月更文挑战第40天】在这个数字时代,掌握移动应用开发已成为许多技术爱好者的梦想。本文将带你走进iOS开发的世界,从最基础的概念出发,逐步深入到高级功能实现,最终指导你完成自己的第一款App。无论你是编程新手还是有志于扩展技能的开发者,这篇文章都将为你提供一条清晰的学习路径。让我们一起开始这段旅程吧!
|
15天前
|
Android开发 Swift iOS开发
探索安卓与iOS开发的差异和挑战
【10月更文挑战第37天】在移动应用开发的广阔舞台上,安卓和iOS这两大操作系统扮演着主角。它们各自拥有独特的特性、优势以及面临的开发挑战。本文将深入探讨这两个平台在开发过程中的主要差异,从编程语言到用户界面设计,再到市场分布的不同影响,旨在为开发者提供一个全面的视角,帮助他们更好地理解并应对在不同平台上进行应用开发时可能遇到的难题和机遇。
|
13天前
|
iOS开发 开发者
探索iOS开发中的SwiftUI框架
【10月更文挑战第39天】在苹果的生态系统中,SwiftUI框架以其声明式语法和易用性成为开发者的新宠。本文将深入SwiftUI的核心概念,通过实际案例展示如何利用这一框架快速构建用户界面,并探讨其对iOS应用开发流程的影响。
|
16天前
|
JSON 前端开发 API
探索iOS开发之旅:打造你的第一个天气应用
【10月更文挑战第36天】在这篇文章中,我们将踏上一段激动人心的旅程,一起构建属于我们自己的iOS天气应用。通过这个实战项目,你将学习到如何从零开始搭建一个iOS应用,掌握基本的用户界面设计、网络请求处理以及数据解析等核心技能。无论你是编程新手还是希望扩展你的iOS开发技能,这个项目都将为你提供宝贵的实践经验。准备好了吗?让我们开始吧!
|
2月前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
114 1
|
2月前
|
设计模式 安全 Swift
探索iOS开发:打造你的第一个天气应用
【9月更文挑战第36天】在这篇文章中,我们将一起踏上iOS开发的旅程,从零开始构建一个简单的天气应用。文章将通过通俗易懂的语言,引导你理解iOS开发的基本概念,掌握Swift语言的核心语法,并逐步实现一个具有实际功能的天气应用。我们将遵循“学中做,做中学”的原则,让理论知识和实践操作紧密结合,确保学习过程既高效又有趣。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你打开一扇通往iOS开发世界的大门。
|
2月前
|
搜索推荐 IDE API
打造个性化天气应用:iOS开发之旅
【9月更文挑战第35天】在这篇文章中,我们将一起踏上iOS开发的旅程,通过创建一个个性化的天气应用来探索Swift编程语言的魅力和iOS平台的强大功能。无论你是编程新手还是希望扩展你的技能集,这个项目都将为你提供实战经验,帮助你理解从构思到实现一个应用的全过程。让我们开始吧,构建你自己的天气应用,探索更多可能!
66 1
下一篇
无影云桌面