[Add] MentaIFLYAdapter 6.00.23
[CocoaPods.git] / Specs / 8 / 3 / b / SCLoopScrollView / 0.1 / SCLoopScrollView.podspec.json
blob298abca71d73d2491a3396ea32bb4120ccbcba16
2   "name": "SCLoopScrollView",
3   "version": "0.1",
4   "summary": "A View Can Infinite Loop Scroll.",
5   "description": "                   \n                    ##SCLoopScrollView\n\n                    A View Can Infinite Loop Scroll.\n                    SCLoopScrollView can infinite loop scroll.\n\n                    You can use Storyboard or init by yourself.\n                    -----------------\n\n                    Init By Yourself\n                    ```{bash}\n                        NSMutableArray *subViews = [@[] mutableCopy];\n                        for (NSInteger index = 0; index < 3; index++)\n                        {\n                            UIImageView *view = [[UIImageView alloc] init];\n                            view.image = [UIImage imageNamed:[NSString stringWithFormat:@\"%@\", @(index)]];\n                            view.backgroundColor = [UIColor redColor];\n                            [subViews addObject:view];\n                        }\n                        \n                        SCLoopScrollView *scrollView = [[SCLoopScrollView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, self.view.frame.size.width, 300.0f)];\n                        [self.view addSubview:scrollView];\n                        scrollView.items = subViews;\n                        [scrollView begin:^(NSInteger index) {\n                            NSLog(@\"%@\", @(index));\n                        } finished:nil];\n                    ```\n\n                    Init By Storyboard\n                    ```{bash}\n                        NSMutableArray *subViews = [@[] mutableCopy];\n                        for (NSInteger index = 0; index < 3; index++)\n                        {\n                            UIImageView *view = [[UIImageView alloc] init];\n                            view.image = [UIImage imageNamed:[NSString stringWithFormat:@\"%@\", @(index)]];\n                            view.backgroundColor = [UIColor redColor];\n                            [subViews addObject:view];\n                        }\n                        \n                        _scrollView.items = subViews;\n                        [_scrollView begin:^(NSInteger index) {\n                            NSLog(@\"%@\", @(index));\n                        } finished:nil];\n                    ```\n\n                   * Think: Why did you write this? What is the focus? What does it do?\n                   * CocoaPods will be using this to generate tags, and improve search results.\n                   * Try to keep it short, snappy and to the point.\n                   * Finally, don't worry about the indent, CocoaPods strips it!\n",
6   "homepage": "https://github.com/shicang1990/SCLoopScrollView",
7   "license": "MIT",
8   "authors": {
9     "ShiCang": "shicang1990@gmail.com"
10   },
11   "platforms": {
12     "ios": "7.0"
13   },
14   "source": {
15     "git": "https://github.com/shicang1990/SCLoopScrollView.git",
16     "tag": "0.1"
17   },
18   "source_files": [
19     "SCLoopScrollView",
20     "SCLoopScrollView/*.{h,m}"
21   ]