• 【实战】如何实现滚轮时间的显示


    (高级控件)拾取器

    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是实现动画效果,在初始化时候滚轮滚动到当前日期。

    }

  • 相关阅读:
    js 控制页面跳转的5种方法
    弹性盒
    js中变量声明有var和没有var的区别
    解决Cannot read property 'style' of null中样式问题
    JS中用for循环解决重复定义的问题
    博客第一天
    jQuery 无缝轮播
    随鼠标移动
    倒计时
    轮播图
  • 原文地址:https://www.cnblogs.com/ejllen/p/3722896.html
Copyright © 2020-2023  润新知