zoukankan      html  css  js  c++  java
  • UIDatePicker设置为24小时制

            self.startDateView = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, screenHight - 300, screenWidth, 300)];

            self.startDateView.backgroundColor = UIColor.whiteColor;

            //设置本地时间为中国

            self.startDateView.locale = [NSLocale localeWithLocaleIdentifier:@"ch"];

            //日期显示格式

            self.startDateView.datePickerMode = UIDatePickerModeTime;

            

            //设置为24小时制

            NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_GB"];

            self.startDateView.locale = locale;

            self.startDateView.minimumDate = [NSDate date]; // 最小时间

            

            [self.view addSubview:self.startDateView];

  • 相关阅读:
    指定pdf的格式
    iptables 防火墙
    jumpserver2
    jquery UI
    python 自动化审计
    Jumpserver
    认识二进制安全与漏洞攻防技术 (Windows平台)
    将这段美化的css代码
    pycharm
    android Tips
  • 原文地址:https://www.cnblogs.com/-ios/p/9708881.html
Copyright © 2011-2022 走看看