zoukankan      html  css  js  c++  java
  • 【实战】如何实现滚轮时间的显示

    (高级控件)拾取器

    PS:无论是UIPickerView还是UIDatePicker,都需要设置成IBOutlet类型。

    按钮的事件类型为:Touch Up Inside

    - (IBAction)buttonPressed:(id)sender{

      NSDate *selectedTime = [UIDatePicker date];

      NSFormatter *dateFormatter = [[NSFormatter alloc]init];

      [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

      NSString *selectedTimeString = [dateFormatter stringFromDate:selectedTime];

      NSString *message = [[NSString alloc]initWithFormat:@"The date and time you selected is: %@",selectedTimeString];

      UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"shijian" message:message

                                                                        delegate:nil  cancelButtonTitle:@"Cancel" otherButtonTitles:nil];

      [alertView show]; 

    }

    -(void)viewDidLoad{

      [super viewDidLoad];

      NSDate *now = [NSDate date];

      [datePicker setDate:now animated:NO]; //设定日期拾取器的时间,animated:YES是实现动画效果,在初始化时候滚轮滚动到当前日期。

    }

  • 相关阅读:
    三、linux系统管理
    二、基本命令
    一、基本环境
    mysql-day4
    mysql-day3
    mysql-day2
    mysql-day1
    3、线性表的链式存储结构
    2、线性表之顺序表
    1、时间复杂度
  • 原文地址:https://www.cnblogs.com/ejllen/p/3722896.html
Copyright © 2011-2022 走看看