首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
calendar components
】的更多相关文章
calendar components
calendar components 日历 angular, react, vue ??? react https://github.com/intljusticemission/react-big-calendar https://reactscript.com/tag/calendar/ https://zinoui.com/blog/react-calendar-component https://www.syncfusion.com/react-ui-components/calend…
iOS 小知识点(持续更新)
1.如何通过代码设置Button title的字体大小 设置Button.titleLabel.font = [UIFont systemFontOfSize:<#(CGFloat)#>] : 2.获取当前时间 NSDate *timeDate=[NSDate date]; NSDateFormatter * dateformatter=[[NSDateFormatter alloc] init]; [dateformatter setDateFormat:@"YYYYMMddHH…
iOS--NSDate的基本操作和常用核心功能
不在赘述理论,直接贴代码 typedef enum : NSUInteger { Date1BelongToPast = -1, Date1BelongToToday = 0, Date1BelongToFeature = 1, } Date1BelongTo; @interface DateViewCtrl() @end @implementation DateViewCtrl -(void)viewDidLoad{ [super viewDidLoad]; NSDate *currDate…
iOS NSDate等时间类的使用
一.NSDate NSDate对象用来表示一个具体的时间点. NSDate是一个类簇,我们所使用的NSDate对象,都是NSDate的私有子类的实体. NSDate存储的是GMT时间,使用的时候会根据 当前应用 指定的 时区 进行时间上的增减,以供计算或显示. //iOS时间 //当前时间.默认0时区 NSDate *date = [NSDate date]; NSLog(@"当前时间date%@",date); //NSDateFormatter是用来设置NSDate的格式 NSDa…
利用NSCalendar类实现日期的比较
在项目中日期的显示经常会当天的显示时分,当月的显示日时和分,以此类推,难免会涉及到日期的比较,下面介绍一下日期比较的两种方法 比较日期有两种方法 一种是通过系统的NSCalendar类实现 NSString * date = @"2016-10-12 13:12:12"; //创建日期格式 NSDateFormatter * dateFormat = [[NSDateFormatter alloc]init]; [dateFormat setDateFormat…
用NSCalendar和UICollectionView自定义日历,并实现签到显示
前一段时间因为工作需要实现了一个可以签到的日历,来记录一下实现的思路 效果如图: 这里的基本需求是: 1,显示用户某个月的签到情况,已经签到的日子打个圈,没有签到且在某个时间范围内的可以签到,其他的只能看. 2,服务器只会返回这个月用户签到日子的时间戳数组和可以签到的时间范围,剩下的日子就是没有签到的. 3,显示跟普通的日历一样即可,上面是“一二三四五六日”,下面是对应的日期. 4,可以切换到当前日期之前的月份. 根据需求,基本思路是: 用一个pageViewController作为基本…
iOS中获取当前时间,设定时间,并算出差值
NSDate *date = [NSDate date];//获取当前时间 NSTimeZone *zone = [NSTimeZone systemTimeZone];//修改时区 NSInteger interval1 = [zone secondsFromGMTForDate: date];//修改时区 _localDate1 = [date dateByAddingTimeInterval: interval1];//修改时区 NSLog(@"~~~~~~~~~~~~~今天%@\n&qu…
AVPlayer
AVPlayer AVPlayerLayer是CALayer的一个子类,由于AVPlayer这个播放器只能安置在AVPlayerLayer 这个图层之上,所以我们需要实例化一个UIView,并且修改它默认生成的图层类型(默认是CALayer,不具备安置AVPlayer的功能) 1.修改UIView自带的CALayer类型 +(Class)layerClass 2.媒体对象 AVPlayerItem 3.通过KVO来观察AVPlayer…
BSBuDeJie_04
一 段子的下拉 建立模型 数字类型的用assign /* 当前页码 */ @property (nonatomic, assign) NSInteger page; 二 下拉上拉细节处理 三 细节处理 1 在各种网络之下,page的数值也不同 2 定义全局常量 .h文件放引用 .m文件放定义 command + b 编译一下 #import <UIKit/UIKit.h> UIKIT_EXTERN CGFloat const BSTitlesViewH; UIKIT_EXTERN CGFloa…
iOS 商品倒计时 限时特价 限时优惠 功能的封装
最近项目中多个页面用到了 商品特价倒计时的功能 为了偷懒 于是自己封装了一个限时抢购 倒计时的view 代码实现如下: 定向价 限时特价 模型代码实现: #pragma mark 商品定向价模型 @interface STGoodsOrientationPrice : STBaseModel /**定向价**/ @property (nonatomic, copy) NSString *price; /**定向价开始时间**/ @property (nonatomic, copy) NSStr…