alertview 使用

typedef enum{

alertviewType1,

alertviewType2,

} alertviewType;

 

@interface ZBMainViewController ()<UIAlertViewDelegate>

 

@end

 

@implementation ZBMainViewController

 

 

 

 

- (void)viewDidLoad

{

    [super viewDidLoad];

    

    //导航栏是否透明  no是透明

    

    [self.navigationController.navigationBar setTranslucent:NO];

 

     self.navigationItem.title = @"张先森";   //    self.title=@"张先森";

    

    [self.navigationController.navigationBar setBarTintColor:[UIColor purpleColor]];

 

 

    [self.navigationItem setLeftBarButtonItem:[[UIBarButtonItem alloc] initWithTitle:@"测试" style:UIBarButtonItemStyleDone target:self action:@selector(leftClick:)]];

}

 

-(void)leftClick:(UIBarButtonItem *)item{

    UIAlertView *view=[[UIAlertView alloc] initWithTitle:@"测试" message:@"你大爷" delegate:self cancelButtonTitle:@"cancel" otherButtonTitles:@"yes", nil];

     view.tag=alertviewType1;

    [view show];

}

 

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

 

    if (alertView.tag==alertviewType1) {

        

        if (buttonIndex==0) {

            

        }

        

        

        

    }

 

 

}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 6   UIAlertView *altView = [[UIAlertView alloc]initWithTitle:[self altTitle] message:[self altMSG] delegate:self cancelButtonTitle:[self cancelBtnTitle] otherButtonTitles:[self otherBtnTitle], nil];
7     // 2、显示 alertView
8     [altView show];

 

 

 

 22 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
23 {
24     NSString *btnTitle = [alertView buttonTitleAtIndex:buttonIndex];
25     if ([btnTitle isEqualToString:[self cancelBtnTitle]]) {
26         NSLog(@"你点击了退出");
27     }
28     else if ([btnTitle isEqualToString:[self otherBtnTitle]] ) {
29         NSLog(@"你点击了重新登录按钮");
30     }
31 }

转载于:https://www.cnblogs.com/zhibin/p/4114554.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值