[Add] ijkmedia-framework 1.0.0
[CocoaPods.git] / Specs / 3 / 9 / 0 / CategorySliderView / 1.0.2 / CategorySliderView.podspec.json
blobc8a7046b37e3fb3ff748ded24339ef8218dcaab0
2   "name": "CategorySliderView",
3   "version": "1.0.2",
4   "summary": "slider view for choosing categories. add any UIView type as category item view .",
5   "description": "CategorySliderView\n==================\n\nHorizontal or vertical slider view for choosing categories. Add any UIView type as category item view. Fully customisable\n\nDemo\n====\n![alt tag](https://raw.githubusercontent.com/cemolcay/CategorySliderView/master/demo.gif)\n\nUsage\n-----\nCopy CategorySliderView.h/m files into your project.\n\n    UILabel *category1 = ......\n    UILabel *category2 = ......\n    UILabel *category3 = ......\n    ...\n    \n    CategorySliderView *sliderView = [[CategorySliderView alloc] initWithSliderHeight:60 andCategoryViews:@[category1, category2, category3] categorySelectionBlock:^(UIView *categoryView, NSInteger categoryIndex) {\n        UILabel *selectedView = (UILabel *)categoryView;\n        NSLog(@\"\"%@\" cateogry selected at index %d\", selectedView.text, categoryIndex);\n    }];\n    [self.view addSubview:sliderView];\n\n\nyou can add as many items as you want\n\n    UIView *newCategoryView = .....\n    [sliderView addCategoryView:newCategoryView];\n    \n\n\nOptional Properties\n-------------------\n\n    shouldAutoScrollSlider: scrolls to closest category item after dragging ends\n    shouldAutoSelectScrolledCategory: selects the closest category item after dragging ends\n    categoryViewPadding: padding between category item views\n    backgroundImage: background image for slider\n",
6   "homepage": "https://github.com/cemolcay/CategorySliderView",
7   "license": "MIT",
8   "authors": {
9     "Cem Olcay": "ccemolcay@gmail.com"
10   },
11   "platforms": {
12     "ios": null
13   },
14   "source": {
15     "git": "https://github.com/cemolcay/CategorySliderView.git",
16     "tag": "v1.0.2"
17   },
18   "source_files": "CategorySliderView/*.{h,m}",
19   "requires_arc": true