LGLCalender (价格日历)

一直未能找到自己想要的日历价格,就算右也不是我想要的,今天自己封装了一个,欢迎各位来查阅,不足的地方请指教 最新代码下载地址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];

// =================================  结束使用  ===================================================

 

posted on 2016-10-12 13:52  ljmaque  阅读(598)  评论(4编辑  收藏  举报

导航