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,如需转载请自行联系原作者

相关文章
|
2天前
|
设计模式 前端开发 Swift
探索iOS开发:从初级到高级的旅程
【10月更文挑战第31天】在这篇文章中,我们将一起踏上iOS开发的旅程。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和技巧。我们将从基础开始,逐步深入到更高级的技术和概念。让我们一起探索iOS开发的世界吧!
|
5天前
|
设计模式 前端开发 Swift
探索iOS开发:从初级到高级的旅程
【10月更文挑战第28天】在这篇技术性文章中,我们将一起踏上一段探索iOS开发的旅程。无论你是刚入门的新手,还是希望提升技能的开发者,这篇文章都将为你提供宝贵的指导和灵感。我们将从基础概念开始,逐步深入到高级主题,如设计模式、性能优化等。通过阅读这篇文章,你将获得一个清晰的学习路径,帮助你在iOS开发领域不断成长。
29 2
|
7天前
|
Swift iOS开发 UED
如何使用Swift和UIKit在iOS应用中实现自定义按钮动画
本文通过一个具体案例,介绍如何使用Swift和UIKit在iOS应用中实现自定义按钮动画。当用户点击按钮时,按钮将从圆形变为椭圆形,颜色从蓝色渐变到绿色;释放按钮时,动画以相反方式恢复。通过UIView的动画方法和弹簧动画效果,实现平滑自然的过渡。
20 1
|
11天前
|
安全 API Swift
探索iOS开发中的Swift语言之美
【10月更文挑战第23天】在数字时代的浪潮中,iOS开发如同一艘航船,而Swift语言则是推动这艘船前进的风帆。本文将带你领略Swift的独特魅力,从语法到设计哲学,再到实际应用案例,我们将一步步深入这个现代编程语言的世界。你将发现,Swift不仅仅是一种编程语言,它是苹果生态系统中的一个创新工具,它让iOS开发变得更加高效、安全和有趣。让我们一起启航,探索Swift的奥秘,感受编程的乐趣。
|
16天前
|
Swift iOS开发 UED
如何使用Swift和UIKit在iOS应用中实现自定义按钮动画
【10月更文挑战第18天】本文通过一个具体案例,介绍如何使用Swift和UIKit在iOS应用中实现自定义按钮动画。当用户按下按钮时,按钮将从圆形变为椭圆形并从蓝色渐变为绿色;释放按钮时,动画恢复原状。通过UIView的动画方法和弹簧动画效果,实现平滑自然的动画过渡。
40 5
|
13天前
|
Swift iOS开发 开发者
探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】在苹果生态系统中,SwiftUI的引入无疑为iOS应用开发带来了革命性的变化。本文将通过深入浅出的方式,带领读者了解SwiftUI的基本概念、核心优势以及如何在实际项目中运用这一框架。我们将从一个简单的例子开始,逐步深入到更复杂的应用场景,让初学者能够快速上手,同时也为有经验的开发者提供一些深度使用的技巧和策略。
37 1
|
23天前
|
Swift iOS开发 UED
实现一个自定义的iOS动画效果
本文介绍如何使用Swift和UIKit在iOS应用中实现一个自定义按钮动画,当按钮被点击时,其颜色从蓝色渐变为绿色,形状从圆形变为椭圆形,释放后恢复原状。通过UIView动画方法实现这一效果,代码示例展示了动画的平滑过渡和状态切换,有助于提升应用的视觉体验和用户交互。
44 1
|
2天前
|
移动开发 Java Android开发
探索Android与iOS开发的差异性与互联性
【10月更文挑战第32天】在移动开发的大潮中,Android和iOS两大平台各领风骚。本文将深入浅出地探讨这两个平台的开发差异,并通过实际代码示例,展示如何在各自平台上实现相似的功能。我们将从开发环境、编程语言、用户界面设计、性能优化等多个角度进行对比分析,旨在为开发者提供跨平台开发的实用指南。
18 0
|
30天前
|
Java Android开发 Swift
安卓与iOS开发对比:平台选择对项目成功的影响
【10月更文挑战第4天】在移动应用开发的世界中,选择合适的平台是至关重要的。本文将深入探讨安卓和iOS两大主流平台的开发环境、用户基础、市场份额和开发成本等方面的差异,并分析这些差异如何影响项目的最终成果。通过比较这两个平台的优势与挑战,开发者可以更好地决定哪个平台更适合他们的项目需求。
98 1
|
1月前
|
设计模式 安全 Swift
探索iOS开发:打造你的第一个天气应用
【9月更文挑战第36天】在这篇文章中,我们将一起踏上iOS开发的旅程,从零开始构建一个简单的天气应用。文章将通过通俗易懂的语言,引导你理解iOS开发的基本概念,掌握Swift语言的核心语法,并逐步实现一个具有实际功能的天气应用。我们将遵循“学中做,做中学”的原则,让理论知识和实践操作紧密结合,确保学习过程既高效又有趣。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你打开一扇通往iOS开发世界的大门。