zoukankan      html  css  js  c++  java
  • IOS问题汇总:2012-12-18 UIAlertView+UIActionSheet

    UIAlertView/UIActionSheet

    UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@“添加场景模式” message:@“请输入场景名称” delegate:self cancelButtonTitle:@“取消” otherButtonTitles:@“确定”, nil];
    alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
    UITextField * tf = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, alertView.frame.size.width, 44)];

        tf.borderStyle = UITextBorderStyleRoundedRect;
    
        /*    UITextBorderStyleNone,
         UITextBorderStyleLine,
         UITextBorderStyleBezel,
         UITextBorderStyleRoundedRect*/
        //        tf.placeholder = detailText;
        //        NSLog(@"tf.text--%@",tf.text);
        //        tf.delegate = self;
        //        tf.borderStyle = UITextBorderStyleRoundedRect;
        [alertView addSubview:tf];
    
        [alertView show];
    

    ——alertView自动消失
    -(void) performDismiss:(NSTimer *)timer
    {
    [Alert dismissWithClickedButtonIndex:0 animated:NO];
    [Alert release];
    }

    -(void)presentSheet
    {
    Alert = [[UIAlertView alloc] initWithTitle:@“警告” message:@“出错啦!” delegate:self cancelButtonTitle:nil otherButtonTitles:nil, nil];

    [NSTimer scheduledTimerWithTimeInterval:2.0f target:self selector:<a href="http://www.twitter.com/selector">@selector</a>(performDismiss:) userInfo:nil repeats:NO];
    [Alert show];
    

    }

    UIActionSheet *as = [[UIActionSheet alloc]initWithTitle:[NSString stringWithFormat:@“添加%@”,actionSheetTitle] delegate:self cancelButtonTitle:@“取消” destructiveButtonTitle:nil otherButtonTitles:actionSheetButtonTitle ,nil];

        /*
         UIActionSheetStyleAutomatic        = -1,       // take appearance from toolbar style otherwise uses 'default'
         UIActionSheetStyleDefault          = UIBarStyleDefault,
         UIActionSheetStyleBlackTranslucent = UIBarStyleBlackTranslucent,
         UIActionSheetStyleBlackOpaque      = UIBarStyleBlackOpaque,
         */
        //    as.actionSheetStyle = UIActionSheetStyleBlackOpaque;
        [as showInView:self.view];
  • 相关阅读:
    c++学习--面向对象一实验
    c++学习--面向对象一
    c#学习
    Linux安全之SSH 密钥创建及密钥登录,禁止密码登陆
    laravel 5.5 跨域问题 并且laravel的跨域 Access-Control-Allow-Origin 报错的坑
    安装 lnmp
    微信小程序-聊天功能下拉加载更多数据(历史聊天内容出现在顶部)
    简单实现小程序view拖拽功能
    mysql 常用命令
    有感而发——写给曼曼的信
  • 原文地址:https://www.cnblogs.com/hanyutong/p/4425196.html
Copyright © 2011-2022 走看看