`
zjjzmw1
  • 浏览: 1366202 次
  • 性别: Icon_minigender_1
  • 来自: 开封
社区版块
存档分类
最新评论

UIAlertView用法

    博客分类:
  • iOS
iOS 
阅读更多

[((UIAlertView*)[self.activityV superview])  dismissWithClickedButtonIndex:0 animated:YES];//这句话可以让没有取消按钮的uialerview消失。

iPhone入门 - UIAlertView用法

1. 最简单的用法

 

UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"提示" 

                                                  message:@"这是一个简单的警告框!" 

                                                  delegate:nil   

                                                  cancelButtonTitle:@"确定" 

                                                  otherButtonTitles:nil];  

[alert show];  

[alert release]; 

 

2. 为UIAlertView添加多个按钮

 

UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"提示" 

                                                  message:@"请选择一个按钮:" 

                                                  delegate:nil   

                                                  cancelButtonTitle:@"取消" 

                                                  otherButtonTitles:@"按钮一", @"按钮二", @"按钮三",nil];  

[alert show];  

[alert release]; 

 3. 如何判断用户点击的按钮

UIAlertView有一个委托UIAlertViewDelegate ,继承该委托来实现点击事件

 头文件:

 

@interface MyAlertViewViewController : UIViewController<UIAlertViewDelegate> {

}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;

-(IBAction) buttonPressed;

@end

源文件:

 

-(IBAction) buttonPressed

{

UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"提示" 

                                                 message:@"请选择一个按钮:" 

                                                 delegate:self   

                                                 cancelButtonTitle:@"取消" 

                                                 otherButtonTitles:@"按钮一", @"按钮二", @"按钮三",nil];  

[alert show];  

[alert release]; 

}

 

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

{

NSString* msg = [[NSString alloc] initWithFormat:@"您按下的第%d个按钮!",buttonIndex];

 

UIAlertView* alert = [[UIAlertView alloc]initWithTitle:@"提示"

                                                 message:msg

                                                 delegate:nil

                                                 cancelButtonTitle:@"确定"

                                                 otherButtonTitles:nil];

 

[alert show];

[alert release];

 

[msg release];

}

点击“取消”,“按钮一”,“按钮二”,“按钮三”的索引buttonIndex分别是0,1,2,3

 

 

 4. 手动的取消对话框

 

[alertdismissWithClickedButtonIndex:0 animated:YES];

 

5:为UIAlertView添加子视图

在为UIAlertView对象太添加子视图的过程中,有点是需要注意的地方,如果删除按钮,也就是取消UIAlerView视图中所有的按钮的时候,可能会导致整个显示结构失衡。按钮占用的空间不会消失,我们也可以理解为这些按钮没有真正的删除,仅仅是他不可见了而已。如果在UIAlertview对象中仅仅用来显示文本,那么,可以在消息的开头添加换行符(@"\n)有助于平衡按钮底部和顶部的空间。

下面的代码用来演示如何为UIAlertview对象添加子视图的方法。

 

UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"请等待" 

                                                 message:nil

                                                 delegate:nil   

                                                 cancelButtonTitle:nil 

                                                 otherButtonTitles:nil];  

[alert show];

 

UIActivityIndicatorView*activeView = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

activeView.center = CGPointMake(alert.bounds.size.width/2.0f, alert.bounds.size.height-40.0f);  

[activeView startAnimating];  

 

[alert addSubview:activeView];  

 

[activeView release];  

[alert release];  

 6.  UIAlertView默认情况下所有的text是居中对齐的。 那如果需要将文本向左对齐或者添加其他控件比如输入框时该怎么办呢? 不用担心, iPhone SDK还是很灵活的, 有很多delegate消息供调用程序使用。 所要做的就是在

- (void)willPresentAlertView:(UIAlertView *)alertView

中按照自己的需要修改或添加即可, 比如需要将消息文本左对齐,下面的代码即可实现:

 

-(void) willPresentAlertView:(UIAlertView *)alertView

{

 

      for( UIView * view in alertView.subviews )

      {

            if( [view isKindOfClass:[UILabel class]] )

            {

                  UILabel* label = (UILabel*) view;

                  label.textAlignment=UITextAlignmentLeft;

 

            }

      }

}

 

 

 这段代码很简单, 就是在消息框即将弹出时,遍历所有消息框对象,将其文本对齐属性修改为 UITextAlignmentLeft即可。

添加其他部件也如出一辙, 如下代码添加两个UITextField:

 

-(void) willPresentAlertView:(UIAlertView *)alertView

{

 

      CGRect frame = alertView.frame;

      frame.origin.y -= 120;

      frame.size.height += 80;

      alertView.frame = frame;

 

      for( UIView * viewin alertView.subviews )

      {

            if( ![viewisKindOfClass:[UILabelclass]] )

            {

                  CGRect btnFrame = view.frame;

                  btnFrame.origin.y += 70;

 

                  view.frame = btnFrame;

            }

}

 

UITextField* accoutName = [[UITextFieldalloc] init];

UITextField* accoutPassword = [[UITextFieldalloc] init];

 

accoutName.frame = CGRectMake( 10, frame.origin.y + 40,frame.size.width - 20, 30 );

accoutPassword.frame = CGRectMake( 10, frame.origin.y + 80,frame.size.width -20, 30 );

 

accoutName.placeholder = @"请输入账号";

accoutPassword.placeholder = @"请输入密码";

accoutPassword.secureTextEntry = YES;

 

[alertView addSubview:accoutPassword];

[alertView addSubview:accoutName];

 

[accoutName release];

[accoutPassword release];

}

 

 显示将消息框固有的button和label移位, 不然添加的text field会将其遮盖住。 然后添加需要的部件到相应的位置即可。

对于UIActionSheet其实也是一样的, 在
- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
中做同样的处理一样可以得到自己想要的界面。


 

 

 

 

 

 

分享到:
评论

相关推荐

    UIAlertView使用Block传值

    `UIAlertView使用Block传值`这个话题主要是关于如何将传统的Delegate模式转换为使用Block来处理UIAlertView的点击事件,提高代码的可读性和简洁性。在Objective-C中,我们可以创建一个类别(Category)来扩展...

    ios UIAlertView修攺其布局,自定义UIAlertView

    为了改变这种布局,我们可以选择重写`UIAlertView`或者使用它的Delegate方法来实现自定义。在iOS 8之后,苹果引入了`UIAlertController`,它取代了`UIAlertView`,提供了更多的定制选项。不过,如果你仍然需要支持...

    ios-swift - UIAlertView的使用.zip

    下面将详细介绍`UIAlertView`的使用方法。 首先,创建一个`UIAlertView`对象,我们需要导入`UIKit`框架: ```swift import UIKit ``` 然后,我们可以创建`UIAlertView`实例,并设置其标题、消息以及按钮: ```...

    ios-UIalertView.zip

    首先,我们需要理解UIAlertView的基本使用方法。它通常通过UIAlertView的构造函数创建,设置标题和消息,然后添加按钮。例如: ```swift let alert = UIAlertView(title: "警告", message: "这是一个示例警告", ...

    UIAlertView自动消失

    在iOS 8之后,UIAlertView被UIAlertController取代,因此如果在新版本的iOS上仍然使用UIAlertView,可能会出现不兼容的问题,导致警告视图无法正常显示或异常消失。 一种可能的情况是,UIAlertView在显示之前就已经...

    自定义 UIAlertView

    将这些按钮添加到自定义的UIAlertView中,可以使用`addSubview:`方法。 3. **动画效果**:为显示和隐藏alertView添加过渡动画,使用户交互更加流畅。这可以通过修改alertView的frame或使用CAAnimation来实现。 4. ...

    UIAlertView 的替代品

    在iOS开发中,UIAlertView曾是用于显示警告或确认消息的标准组件,但在iOS 8之后,苹果引入了新的UIPresentation API,弃用了UIAlertView,并推荐使用UIAlertController。因此,“UIAlertView的替代品”这一主题主要...

    UIAlertView小例子

    这个小例子将详细介绍如何在iOS应用中使用UIAlertView,包括其基本用法、按钮事件处理以及带有文本输入的alertView。 首先,让我们了解UIAlertView的基本用法。创建一个UIAlertView实例,你需要调用它的初始化方法...

    UIAlertView的基本用法与UIAlertViewDelegate对对话框的事件处理方法

    UIAlertView是iOS平台上一个用于显示简单警告对话框的类,它在...对于旧代码的维护,理解并正确使用UIAlertView及其Delegate方法至关重要。在`UIAlertViewDelegateDemo`这个示例项目中,你可以看到这些概念的实际应用。

    swift-因为iOS8以后UIAlertView已经不推荐使用

    5. **展示视图**:在适当的时候,使用`present`方法展示创建的警告视图。 `PISAlertView-master`这个文件名很可能表示这是一个开源项目,包含了`PISAlertView`的所有源代码和资源文件。在实际项目中,开发者可以...

    iOS中UIAlertView警告框组件的使用教程

    首先,我们来看一下最基础的UIAlertView使用方法。创建一个UIAlertView对象可以通过调用`initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:`初始化方法。这个方法需要传入四个参数:警告框的...

    左对齐UIAlertView

    在使用这个自定义的UIAlertView时,只需要导入`UIAlertView+Left.h`,然后创建一个UIAlertView实例并调用`setTextAlignmentLeft`方法即可实现左对齐效果。 总之,"左对齐UIAlertView"是一个针对原生UIAlertView的...

    IOS之UIAlertView的事件处理(免Delegate)

    在早期版本的iOS中,`UIAlertView`的事件处理通常需要通过实现其代理方法来完成,这增加了代码的复杂性。然而,随着编程模式的发展,为了解耦和简化代码,开发者开始使用Blocks来处理`UIAlertView`的点击事件,这...

    UIAlertView\UIAlertController 文字左对齐实现

    对于`UIAlertView`的文字左对齐,我们需要自定义一个`UIAlertView`的子类,重写`layoutSubviews`方法,然后在其中调整`UILabel`的位置。以下是一个示例代码: ```swift class LeftAlignedAlertView: UIAlertView { ...

    UIALertView

    UIALertView的使用不仅可以提升用户体验,还能帮助开发者快速实现复杂的警告视图需求,而无需深入研究UIAlertController的底层实现。然而,需要注意的是,随着iOS系统的更新,苹果可能会提供更多的原生API来增强警告...

    iphone 开发基础控件UIAlertView

    在iOS开发中,UIAlertView是苹果提供的一种基础控件,用于展示警告或提示信息。...虽然在新的iOS版本中已不再推荐使用,但掌握它的原理和使用方法有助于开发者更好地理解和应用UIAlertController。

    iPhone的UIAlertView加入UITableView

    当需要在警告视图中展示更复杂的信息,比如一个列表,开发者可能会将`UITableView`与`UIAlertView`结合使用。`"iPhone的UIAlertView加入UITableView"`这个示例程序就是展示了如何在`UIAlertView`内部嵌入一个`...

    UIAlertView和UIActionSheet

    首先来讲解UIAlertView的使用方法。UIAlertView用于显示一个简单的警告框,其中包含一个可选的消息文本、一个标题、一个取消按钮以及一个或多个其他按钮。开发者可以通过alloc和initWithTitle方法创建一个...

    UIAlertView 提示框 多项选择

    要实现这样的功能,首先需要理解`UIAlertView`的基本用法。`UIAlertView`的创建通常涉及到以下步骤: 1. 初始化:`[[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:nil...

    ios7 自定义UIAlertView

    然而,随着iOS系统的更新,特别是从iOS7开始,UIAlertView的样式和使用方式发生了一些变化,开发者有时需要对其进行自定义以满足特定的设计需求。本文将深入探讨在iOS7环境下如何自定义UIAlertView。 首先,iOS7的...

Global site tag (gtag.js) - Google Analytics