项目介绍:
一些小功能的集合,方便以后自己使用.现在有贝塞尔曲线的动画,自定义的AVPlayer,这里封面没做好全屏没显示出来,其实没有问题的.仿QQ的侧滑功能,以后会慢慢把用的东西都加进去,在GitHub上回不定时持续更新.当然就不在大牛面前献丑了.有些新手可能会需要参考,碰到问题欢迎指出来.我会慢慢改进,争取也能成大牛!
地址:https://github.com/db5433/Example.git
10.17 添加滑动快进
写的示例代码方便下次直接用 1.工具类
//计算字符串长度 +(CGSize)calculateStringLenth:(NSString*)string withWidth:(CGFloat)width withFontSize:(NSInteger)font;
//颜色十六进制转换 +(UIColor )getColor:(NSString )hexColor;
//输入date 输出星期
(NSString)weekdayStringFromDate:(NSDate)inputDate withDateStr:(NSString*)dateStr;
//比较时间前后 +(int)compareOneDay:(NSString )oneDay withAnotherDay:(NSString )anotherDay;
//计算日期提前或延后 +(NSString*)dateWithDays:(NSInteger)days;
+(NSString)dateWithDays:(NSInteger)days frome:(NSString)date;
//计算给定月份天数
(NSInteger)totaldaysInThisMonth:(NSDate )date with:(NSString)datestr;
//计算给定月份第一天周几
(NSInteger)firstWeekdayInThisMonth:(NSDate )date with:(NSString)datestr;
2.自定义按键的AVPlayer