日历

日历 NSCalendar

試著忘記壹切 提交于 2020-04-17 04:24:01
【推荐阅读】微服务还能火多久?>>> #import "ViewController.h" @interface ViewController () @property ( strong , nonatomic ) NSCalendar *calender1; @property ( strong , nonatomic ) NSCalendar *calender2; @end @implementation ViewController - ( void )viewDidLoad { [ super viewDidLoad ]; // Do any additional setup after loading the view, typically from a nib. } - ( IBAction )tapBtn1:( id )sender { self . calender1 = [ NSCalendar currentCalendar ]; self . calender2 = [ NSCalendar autoupdatingCurrentCalendar ]; NSLog ( @"%@" , self . calender1 . calendarIdentifier ); NSLog ( @"%@" , self . calender2 .

利用ngrepeat实现的日历加上ion-slide-box效果

随声附和 提交于 2020-04-07 12:07:56
开发招聘助手的有个页面需要画日历,因为开发比较急,想换个方式去实现功能的,但是想想自己本来就打算写个日历,这次未必不是个很好的机会啊~所以也就花了一天整了个日历 先看效果: 默认打开是定位到当月当天,本日之前的天数灰色字体标识 点击按钮切换月份 左右滑动切换当月的周 说一下主要的实现原理吧: 在做之前参考了很多的代码,但是不知道为什么,心里面总觉得这样去实现太麻烦了,而且可能由于资历不够,看别人的代码也比较难懂。。。 所以就自己想了下: 这里主要是通过二维数组ng-repeat实现的,给出 $scope.days = [ [ {"date": "", "check": false, "year": "", "month": ""}, {"date": "", "check": false, "year": "", "month": ""}, {"date": "", "check": false, "year": "", "month": ""}, {"date": "", "check": false, "year": "", "month": ""}, {"date": "", "check": false, "year": "", "month": ""}, {"date": "", "check": false, "year": "", "month": ""}, {

Python 写的计算指定年指定月日历的脚本

放肆的年华 提交于 2020-03-01 03:10:43
今天初学Python写了一个用于计算指定年指定月日历的脚本 我的Python版本:Python 3.4.2 输入:脚本名 年(4位数字,1900-2100) 月(1-2位数字,1-12) 输出:打印的指定年月日历信息 Calendar.py import os import sys # check if the number of input is legal if len(sys.argv) != 3: print('Invalid input! Example: 2014 12') os.system('pause') # "press any key to continue..." os._exit(0) # terminate this script # check if input(year) is legal print("Year: %s" % sys.argv[1]) if not str(sys.argv[1]).isdigit(): print('Invalid input! Year must be a positive integer') os.system('pause') os._exit(0) elif int(sys.argv[1]) < 1900 or int(sys.argv[1]) > 2100: print('Invalid input!