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];

猜你喜欢

转载自www.cnblogs.com/-ios/p/9708881.html
今日推荐