LGLCalender
查看次数:3235
下载次数:697
上传时间:2016-10-12
大小:175 B
一款简单的日历,代码易懂,使用方便,最新代码可到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];
// ================================= 结束使用 ===================================================
收藏