一直未能找到自己想要的日历价格,就算右也不是我想要的,今天自己封装了一个,欢迎各位来查阅,不足的地方请指教 最新代码下载地址https://github.com/liguoliangiOS/LGLCalender.git 欢迎查阅,代码不在贴出来了。
使用示例
// ================================= 开始使用 ===================================================
LGLCalenderViewController * ctl = [[LGLCalenderViewController alloc] init];
[ctl seleDateWithBlock:^(NSMutableDictionary *paramas) {
NSString * date = [NSString stringWithFormat:@"%@-%@-%@", paramas[@"year"], paramas[@"month"], paramas[@"day"]];
NSString * price = paramas[@"price"];
self.date.text = date;
self.price.text = price;
}];
[self.navigationController pushViewController:ctl animated:YES];
// ================================= 结束使用 ===================================================