TMCarouseView 1.2

TMCarouseView 1.2

测试已测试
Lang语言 Obj-CObjective C
许可证 自定义
发布最新发布2016年8月

tangshimi 维护。



  • 作者:
  • tangshimi

基本使用

CGRect rect = [UIScreen mainScreen].bounds;
TMCarouselView *view = [[TMCarouselView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(rect), 200)];
view.switchingTime = 1;

NSArray *array = @[ @"http://attach.bbs.miui.com/forum/201206/06/2226336d6nxnnfxldyxhed.jpg", @"http://imgstore.cdn.sogou.com/app/a/100540002/714860.jpg" , @"http://cdn.duitang.com/uploads/item/201112/27/20111227143751_TtLkL.jpg" ];

[view setImagesArray:array];

view.clickBlock = ^(NSInteger index) {

    NSLog(@"%@", @(index));
};

[self.view addSubview:view];