├── .gitignore
├── LICENSE
├── README.md
├── SSCycleScrollDemo
├── Podfile
├── Podfile.lock
├── Pods
│ ├── Manifest.lock
│ └── Pods.xcodeproj
│ │ └── project.pbxproj
├── SSCycleScrollDemo.xcodeproj
│ ├── project.pbxproj
│ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ └── SSCycleScrollDemo.xcscmblueprint
├── SSCycleScrollDemo.xcworkspace
│ └── contents.xcworkspacedata
└── SSCycleScrollDemo
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ └── Contents.json
│ ├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
│ ├── FirstViewController.swift
│ ├── Info.plist
│ ├── MainViewController.swift
│ ├── banner1.jpg
│ ├── banner3.jpg
│ ├── banner4.jpg
│ ├── mainBottomBackground.png
│ └── sscycle.gif
└── SSCycleScrollView
├── LICENSE
├── Podfile
├── Podfile.lock
├── SSCycleScrollView.podspec
├── SSCycleScrollView.xcodeproj
├── project.pbxproj
└── project.xcworkspace
│ └── contents.xcworkspacedata
├── SSCycleScrollView.xcworkspace
└── contents.xcworkspacedata
└── SSCycleScrollView
├── Info.plist
├── SSCycleScrollView.h
└── SSCycleScrollView.swift
/.gitignore:
--------------------------------------------------------------------------------
1 | # Xcode
2 | #
3 | build/
4 | *.pbxuser
5 | !default.pbxuser
6 | *.mode1v3
7 | !default.mode1v3
8 | *.mode2v3
9 | !default.mode2v3
10 | *.perspectivev3
11 | !default.perspectivev3
12 | xcuserdata
13 | *.xccheckout
14 | *.moved-aside
15 | DerivedData
16 | *.hmap
17 | *.ipa
18 | *.xcuserstate
19 | .DS_Store
20 | xcshareddata
21 |
22 | # CocoaPods
23 | #
24 | # We recommend against adding the Pods directory to your .gitignore. However
25 | # you should judge for yourself, the pros and cons are mentioned at:
26 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
27 | Pods/
28 |
29 | # Carthage
30 | #
31 | # Add this line if you want to avoid checking in source code from Carthage dependencies.
32 | # Carthage/Checkouts
33 |
34 | Carthage/Build
35 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 Shawn Du
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ### swift首页轮播 轻量级
2 | - 轮播终结者,用swift完成,易于集成使用,下载图片使用了SDWebImage
3 | - 自己动手用swift写了一个,欢迎试用!
4 | - 效果图:
5 |
6 |

7 |
8 |
9 | ### 网上找了一些首页轮播,写的或多或少有一些问题,用着不舒服,自己用swift写了一个轮播控件,有如下特点:
10 | > * 下载图片使用了SDWebImage,性能高
11 | > * 轮播图上需要点击链接,只需要调用一个block便可加上点击,易于集成
12 | > * 支持webp格式图片,由于加入支持webp,电脑需要翻墙才能安装,[电脑更改hosts在这儿](https://github.com/dulingkang/host)
13 |
14 | ### 使用方法
15 | 在Podfile加入以下:
16 |
17 | ```
18 | use_frameworks!
19 | pod 'SSCycleScrollView'
20 | ```
21 | 这个库中支持了webp格式图片,引入了SDWebImage库。
22 | 下面可参考Demo中:
23 | 初始化时,传一个url的array,可以传本地的图片名字,也可以传网络图片;
24 | v2.1.0中为了引入网络图片的placeholderImage,此array改成了如下样式:
25 | ```
26 | var scrollImageUrls: [[String]] {
27 | get {
28 | return [["https://devthinking.com/images/wechatqcode.jpg", "banner4.jpg"],
29 | ["banner1.jpg"],
30 | ["banner3.jpg"]]
31 | }
32 | }
33 | ```
34 |
35 | 初始化一个SSCycleScrollView:
36 |
37 | ```
38 | self.mainScrollView = SSCycleScrollView.init(frame: currentRect, animationDuration: 3, inputImageUrls: self.scrollImageUrls)
39 | self.mainScrollView?.tapBlock = {index in
40 | print("tapped page\(index)")
41 | }
42 |
43 | ```
44 | autoScroll默认为true,如只需要手动滚动,需要:
45 | ```
46 | self.mainScrollView?.autoScroll = false
47 | ```
48 | ### 原理SSCycleScrollView
49 | 初始化后会启动一个定时器,repeat调用一个timerFired方法,方法中每次对scrollview加一个自己宽度的offset:
50 |
51 | ```
52 | func timerFired() {
53 | let xOffset = Int(self.contentOffset.x/kScreenWidth)
54 | let xOffsetFloat = CGFloat(xOffset) * kScreenWidth
55 | let newOffset = CGPointMake(xOffsetFloat + CGRectGetWidth(self.frame), self.contentOffset.y)
56 | self.setContentOffset(newOffset, animated: true)
57 | }
58 | ```
59 |
60 | 没有直接加xOffset, 而是对其做了一个换算,确保每次加的offset是自己宽度的整数倍。
61 | 在scrollViewDidScroll方法,每次计算前一个,当前,后一个index,确保index范围为index >= 0 && index < allImageArray.count, 每次滚动后都会三个imageView中的image做重新赋值:
62 |
63 | ```
64 | self.previousDisplayView?.image = self.allImageArray[previousArrayIndex]
65 | self.currentDisplayView?.image = self.allImageArray[self.currentArrayIndex]
66 | self.lastDisplayView?.image = self.allImageArray[lastArrayIndex]
67 | self.contentOffset = CGPointMake(CGRectGetWidth(self.frame), 0)
68 | ```
69 |
70 | 上面最后一行设置contenOffset非常重要,每次把scrollView的位置重置为1个自身宽度的offset。
71 |
72 | ### 小结
73 | 如果你觉得有不好的地方,可以提出来,大家一块研究一下,欢迎常来我的[仓库](https://github.com/dulingkang/),别忘记给个star!
74 |
75 | ### 微信公众号
76 |
77 |
78 |

79 |
80 |
81 | ### QQ交流群:295976280
82 |
83 |
84 |

85 |
86 |
87 |
88 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '9.0'
3 |
4 | target 'SSCycleScrollDemo' do
5 | use_frameworks!
6 | pod 'SSCycleScrollView', :path => '../SSCycleScrollView'
7 | end
8 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - SDWebImage (4.4.2):
3 | - SDWebImage/Core (= 4.4.2)
4 | - SDWebImage/Core (4.4.2)
5 | - SSCycleScrollView (2.1.1):
6 | - SDWebImage
7 |
8 | DEPENDENCIES:
9 | - SSCycleScrollView (from `../SSCycleScrollView`)
10 |
11 | SPEC REPOS:
12 | https://github.com/cocoapods/specs.git:
13 | - SDWebImage
14 |
15 | EXTERNAL SOURCES:
16 | SSCycleScrollView:
17 | :path: "../SSCycleScrollView"
18 |
19 | SPEC CHECKSUMS:
20 | SDWebImage: 624d6e296c69b244bcede364c72ae0430ac14681
21 | SSCycleScrollView: 99fb8414e155d3a0c26b576927a62f068668cebb
22 |
23 | PODFILE CHECKSUM: 5cff850ee95d4023504061b70d3ce1d8c2fb7de6
24 |
25 | COCOAPODS: 1.5.3
26 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/Pods/Manifest.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - SDWebImage (4.4.2):
3 | - SDWebImage/Core (= 4.4.2)
4 | - SDWebImage/Core (4.4.2)
5 | - SSCycleScrollView (2.1.1):
6 | - SDWebImage
7 |
8 | DEPENDENCIES:
9 | - SSCycleScrollView (from `../SSCycleScrollView`)
10 |
11 | SPEC REPOS:
12 | https://github.com/cocoapods/specs.git:
13 | - SDWebImage
14 |
15 | EXTERNAL SOURCES:
16 | SSCycleScrollView:
17 | :path: "../SSCycleScrollView"
18 |
19 | SPEC CHECKSUMS:
20 | SDWebImage: 624d6e296c69b244bcede364c72ae0430ac14681
21 | SSCycleScrollView: 99fb8414e155d3a0c26b576927a62f068668cebb
22 |
23 | PODFILE CHECKSUM: 5cff850ee95d4023504061b70d3ce1d8c2fb7de6
24 |
25 | COCOAPODS: 1.5.3
26 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/Pods/Pods.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 0414D7FB5CD75515DFE74E712CF3A9D1 /* SDWebImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A4F923D4C314E45B7D0779B2E3A2C0 /* SDWebImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
11 | 0478CC77B94C4FFFD7E48D5F67E7BD15 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 43BBE11E556856E28F0F15A8E2661AF2 /* SDAnimatedImageRep.m */; };
12 | 07C4B31AB0D12E82351581324929BD47 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 48A6943A4394C4051BDFD2A4F1B3ADF6 /* SDWebImageCoderHelper.m */; };
13 | 07F2AD25677138EDAA12C1E9BEFA91E6 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20AF8B4983CFAB24A28410C95B331D69 /* SDWebImage-dummy.m */; };
14 | 0A378AF42832C7E5401E802CB659D528 /* SDWebImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B770771C608F3B0FE3322A0BA03A5803 /* SDWebImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
15 | 1166A94CE275D8B32F388E6DDDAD2604 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA5F89792B0615A7E8450080A7046B64 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
16 | 124358C65C76337AB3A998979E131FCA /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = D56DB7023C499F9F2772C7B6584F725E /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
17 | 128A9E7A1012FED97B2F741E65CBDEF3 /* SDWebImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = A0BFADA7BEA6198A1D63AFA6EEAD22C1 /* SDWebImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
18 | 168F978F4AF4D8F6016AD6B4CD3C424B /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 187351004E3F6054A9410D8CBAD04D66 /* SDWebImageDownloader.m */; };
19 | 18E196CB9CC50E13B601CFD95E474CEE /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = AD594E84E49E0E8D28B5D0E9A1E2267A /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
20 | 1972915AC299FBEB443967F4A9526151 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B0462EC0CF5495E6F9909C42006DDACB /* UIImage+MultiFormat.m */; };
21 | 1E544FF4C03E775571FCFAE4C861F55A /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = ED9F654B1721CC52C147286614CD7DBF /* SDWebImageCoder.m */; };
22 | 1E8CA5F7A83645430788F9376EABE274 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4901C35B74FFB53AEF0BDC868F710834 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
23 | 2D0F9A6AFC524EB7EB8D78284C0DE905 /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA4A1BCD3751357F96AC035A739D502 /* SDWebImageCodersManager.m */; };
24 | 2E74FA391F0434756FF91E750E8C9ABA /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 762FDA22A2618EA78A4A99A3F1F272C8 /* UIImage+ForceDecode.m */; };
25 | 378BADDDAFA40F8937691B1DFDD733A8 /* SDWebImageImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B6767104C1FCE712A65D570289484FC2 /* SDWebImageImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
26 | 39564226F403D640E6B21FA9ACC2EDA5 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 734C3DA88EE2E9541FEC6D97CB0148E3 /* SDWebImageGIFCoder.m */; };
27 | 4141E6302B4F92D6A4E2FBDE768B2627 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D9205063853923A43BEA78F70A9881C /* SDWebImagePrefetcher.m */; };
28 | 43379EE7A73A8EC10DE72EC59E65A84F /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9187633E7D3B565B6DD18987CE547D8A /* NSImage+WebCache.m */; };
29 | 43495D08E5827C6E5B2F1771E0C66965 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4479C8599476854863894A2C35EB8342 /* Foundation.framework */; };
30 | 47F5A12AFCE9DB605FFC8087162B0AE0 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7F986079B1F10E7BF47146906B5EA0 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
31 | 49B9C866268746A2FDF588100C328945 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14F8A2C375F17ECA4486050A2B5EBB11 /* ImageIO.framework */; };
32 | 4FB1369211D58A7207ED955838B38512 /* SDWebImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3343DA38013ACA3779FD4B4A2BB65C70 /* SDWebImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
33 | 534056BEBD6CCE9291FD74CB09EB47C4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4479C8599476854863894A2C35EB8342 /* Foundation.framework */; };
34 | 5B2F5DCC645D5BB431534E0DE30DD9A4 /* SDWebImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D51263AEF33F8BF027FB9BD35AFF704B /* SDWebImage.framework */; };
35 | 5B77EF94713EBD1F1E867C3924E0706F /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = F91D1D23A154BCB4DA9B46ABE3025A53 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; };
36 | 5EEF2C2C8A7F44444EDBEBFFF4D7B140 /* SSCycleScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4D3AAED32A46D54A3D359A5A714F9A8 /* SSCycleScrollView.swift */; };
37 | 6468B2188A512757D4EF5CF6EF49DDE1 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D14B8810554BF0C524166FDD41C9FC /* UIImageView+HighlightedWebCache.m */; };
38 | 6E04BC4561E8D9DA8508EB48CDBE15CB /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B4BDE292BB00F4E814F68B2C2F75EF7 /* SDWebImageImageIOCoder.m */; };
39 | 73056BBE1AB13E8205DAE448ED56FF95 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = D71C9A1CE70C55049350CBC0E5A89CE6 /* UIImage+GIF.m */; };
40 | 737CDB7BCD01174AFF3B98CC3C1BBB4D /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 396B5B5A50A2B9C2B5A2BDF97F6792D1 /* UIView+WebCacheOperation.m */; };
41 | 76911EB4A3BD754497B9612246686955 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = C2ED1B72DE451BFC1B87C557E6BBC04F /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; };
42 | 7BCF641DA01B0E33F3403D665B13637E /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F9F609611642409A92A22C629F294F /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
43 | 879E0A658A799220C776B340CAC55C02 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DEAE6694784C1E192E792795522C98E /* SDWebImageManager.m */; };
44 | 9FE3843DD75AD528996399D6ACFBF41A /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CAA4864BECB9CE289F8949B92E4030B8 /* UIButton+WebCache.m */; };
45 | A561EA79D454AC34666E41CC825AA422 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE1FDA5BDBFF117AB7E7B51EC3F750D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
46 | A7B3589415B208B33D51B4938A40D86F /* SSCycleScrollView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DAFE0C1B4F37004F41C9F4B280806D2 /* SSCycleScrollView-dummy.m */; };
47 | A8157B08BB1BDF85F0882121D88B310A /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD38D14CEE1017CC1DE8F8BFE438B9C /* UIView+WebCache.m */; };
48 | AAA60CD93DB530DE8341C30BBC7BAAE5 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E06730A8EC6D03D612A708A7382699 /* SDImageCache.m */; };
49 | AB39A3B603E09C779A98D5E319F969CF /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 62A29242F48BA6484D8142E49C405C54 /* NSData+ImageContentType.m */; };
50 | AFA740517DD021EE6E4F4B77AB4B526B /* NSImage+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 013A7EA6027B2098D2A66A586DB8DB4D /* NSImage+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
51 | B3C7A473755E7EB6D542B3691FE35B2C /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = EE37ABE7A69E291E1C46A5DD9EA6CC34 /* SDWebImageFrame.m */; };
52 | B7ABEF83726383B555F27DAFD087F5C2 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CEBAAACD2758031DFE2F566308FE9AB9 /* SDWebImageDownloaderOperation.m */; };
53 | BED092AE510987B21A26BB3CE99C4F95 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 02356DBEE78161CD16A787EC599B3908 /* UIImageView+WebCache.m */; };
54 | BF1E26E2048AF4ED1A33A8F540FF45F7 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = F45D866B645CF1E845C397984E499682 /* SDWebImageCompat.m */; };
55 | C3E45121784701672AA214837C53EEB4 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E27B00C17DFF5342687CA00413DAC2 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
56 | CA4BE280F16EC09F34A36C1754D24C45 /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E398CF1CB81172808A4BC994DFCEC383 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
57 | CA5D3532EDD73BC3BE778F46C09FC4EF /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = EA12ACD3279C672484691833E5BF97FB /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
58 | CE378AFA51B03084877DCB1D7C93E514 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C35061D0122913AAEFEF2373CB51976 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
59 | CF3B06148943D44845F91143822B6895 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 55A8D4876A10332B9C5B5CB22B36C938 /* NSButton+WebCache.m */; };
60 | D13A12540D1E9084AAF7EE00EA29557E /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D416D864E6EFEE77FF4C25DC003882 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
61 | D85F5E1FB3784774A61AB815C32E34E1 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8282929CCF36A9E7F871E7843D578686 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
62 | D87652279B255C9FD193C7949BBE770F /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BFD00E5BDED1658D1EC2246C274628A0 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
63 | DCDB0FEF8D420BB7658DFAFDA58BB277 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4479C8599476854863894A2C35EB8342 /* Foundation.framework */; };
64 | E00647534002D0E385B019F44A11D299 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0906D08281D20DB090281EC2DEB64F37 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
65 | E1837868C5EEA535A9F561FE8ACD8994 /* Pods-SSCycleScrollDemo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9277DC892F54ECD217E961EFB2D9E87 /* Pods-SSCycleScrollDemo-dummy.m */; };
66 | E3FDD12BDFA4D33FFC50BE8160C2E34F /* Pods-SSCycleScrollDemo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 083058ACAF4FD4DB2B4F035807246BDB /* Pods-SSCycleScrollDemo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
67 | E4F985D1BBC141991EAF46E8B557811F /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 413FADCDF24126D21DEE85687A9F2B30 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
68 | E5BF50F6FD4CB6042E59039F60EE7777 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 957DE53A94031623728D3DF3AB2C4433 /* SDWebImageTransition.m */; };
69 | E6275F2F58261080AFA798497F93DE8B /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = CC598E0D6818B11DD5DC708D3F3A6883 /* SDImageCacheConfig.m */; };
70 | E88D471004C4D3B31EF3B6B9024E01BA /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 1046AE6E70E6F9193DCA12665C97498C /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
71 | ED194BDE1C219975889E0BAC50C1C2ED /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D46AEE64BA645CB9605EAC174EE4E8E /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
72 | F0A0BA50D38B28771CE5ECA6F0FB02D5 /* SSCycleScrollView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6BF35C90CF8C0CDE320AC004E3B214 /* SSCycleScrollView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
73 | F1E85863F688879E5AD08B0BE1109059 /* SDWebImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 57A526FB1CE6377077D60EE4C6148515 /* SDWebImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
74 | F34C6BE1520B44EDE16B8C0A69E523B2 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D777652FEAE2FBAF933A6BF0B4CCF528 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
75 | /* End PBXBuildFile section */
76 |
77 | /* Begin PBXContainerItemProxy section */
78 | 0544108CBCDDA35CC724662713731253 /* PBXContainerItemProxy */ = {
79 | isa = PBXContainerItemProxy;
80 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
81 | proxyType = 1;
82 | remoteGlobalIDString = F800E203677CC1736B1A983C68EB2F08;
83 | remoteInfo = SSCycleScrollView;
84 | };
85 | 1FBC8C367F1AFA970E9C06687616AB4F /* PBXContainerItemProxy */ = {
86 | isa = PBXContainerItemProxy;
87 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
88 | proxyType = 1;
89 | remoteGlobalIDString = 9A416268E9C6128F50CC606D58191C46;
90 | remoteInfo = SDWebImage;
91 | };
92 | 38A53D1E246CB0CB01FD1FB0D03302A7 /* PBXContainerItemProxy */ = {
93 | isa = PBXContainerItemProxy;
94 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
95 | proxyType = 1;
96 | remoteGlobalIDString = 9A416268E9C6128F50CC606D58191C46;
97 | remoteInfo = SDWebImage;
98 | };
99 | /* End PBXContainerItemProxy section */
100 |
101 | /* Begin PBXFileReference section */
102 | 013A7EA6027B2098D2A66A586DB8DB4D /* NSImage+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+WebCache.h"; path = "SDWebImage/NSImage+WebCache.h"; sourceTree = ""; };
103 | 02356DBEE78161CD16A787EC599B3908 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = ""; };
104 | 06053B94842F3CAB74CA18736D78ABA2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
105 | 07F9F609611642409A92A22C629F294F /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = ""; };
106 | 083058ACAF4FD4DB2B4F035807246BDB /* Pods-SSCycleScrollDemo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SSCycleScrollDemo-umbrella.h"; sourceTree = ""; };
107 | 0906D08281D20DB090281EC2DEB64F37 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = ""; };
108 | 0A7129FCC024CEE0C40AA02922B5CA53 /* Pods-SSCycleScrollDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SSCycleScrollDemo.release.xcconfig"; sourceTree = ""; };
109 | 1046AE6E70E6F9193DCA12665C97498C /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/UIImage+GIF.h"; sourceTree = ""; };
110 | 14F8A2C375F17ECA4486050A2B5EBB11 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; };
111 | 16355C89098D9DED775E86A095357453 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
112 | 187351004E3F6054A9410D8CBAD04D66 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/SDWebImageDownloader.m; sourceTree = ""; };
113 | 1B4BDE292BB00F4E814F68B2C2F75EF7 /* SDWebImageImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageImageIOCoder.m; path = SDWebImage/SDWebImageImageIOCoder.m; sourceTree = ""; };
114 | 1CD76676C331E7DA77A337A6C3256825 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
115 | 1EEE102462D866B4B5C2C67F85EAB18D /* Pods-SSCycleScrollDemo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SSCycleScrollDemo.modulemap"; sourceTree = ""; };
116 | 20AF8B4983CFAB24A28410C95B331D69 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; };
117 | 222FA57C66E5B0C2235B591DB7D89ED2 /* Pods-SSCycleScrollDemo-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SSCycleScrollDemo-acknowledgements.plist"; sourceTree = ""; };
118 | 30D03175A5A9E06CC165EAC345E55B56 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; };
119 | 3343DA38013ACA3779FD4B4A2BB65C70 /* SDWebImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCoderHelper.h; path = SDWebImage/SDWebImageCoderHelper.h; sourceTree = ""; };
120 | 396B5B5A50A2B9C2B5A2BDF97F6792D1 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/UIView+WebCacheOperation.m"; sourceTree = ""; };
121 | 413FADCDF24126D21DEE85687A9F2B30 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = ""; };
122 | 4175E8D92CB49EE9EC32195008827C71 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; };
123 | 43BBE11E556856E28F0F15A8E2661AF2 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/SDAnimatedImageRep.m; sourceTree = ""; };
124 | 4479C8599476854863894A2C35EB8342 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
125 | 46474AD369242A80804775449682635D /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; };
126 | 48A6943A4394C4051BDFD2A4F1B3ADF6 /* SDWebImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCoderHelper.m; path = SDWebImage/SDWebImageCoderHelper.m; sourceTree = ""; };
127 | 48EE75E424D9AB25E7D8CB7C829B7EFE /* Pods-SSCycleScrollDemo-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SSCycleScrollDemo-acknowledgements.markdown"; sourceTree = ""; };
128 | 4901C35B74FFB53AEF0BDC868F710834 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/SDWebImageDownloaderOperation.h; sourceTree = ""; };
129 | 4DD5866B7BA9F3580968F5CD2CBBE9B3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
130 | 55A8D4876A10332B9C5B5CB22B36C938 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/NSButton+WebCache.m"; sourceTree = ""; };
131 | 57A526FB1CE6377077D60EE4C6148515 /* SDWebImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCoder.h; path = SDWebImage/SDWebImageCoder.h; sourceTree = ""; };
132 | 57E27B00C17DFF5342687CA00413DAC2 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/SDWebImageTransition.h; sourceTree = ""; };
133 | 5C35061D0122913AAEFEF2373CB51976 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/UIView+WebCacheOperation.h"; sourceTree = ""; };
134 | 5D46AEE64BA645CB9605EAC174EE4E8E /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/SDWebImageOperation.h; sourceTree = ""; };
135 | 62A29242F48BA6484D8142E49C405C54 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/NSData+ImageContentType.m"; sourceTree = ""; };
136 | 71E06730A8EC6D03D612A708A7382699 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/SDImageCache.m; sourceTree = ""; };
137 | 734C3DA88EE2E9541FEC6D97CB0148E3 /* SDWebImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageGIFCoder.m; path = SDWebImage/SDWebImageGIFCoder.m; sourceTree = ""; };
138 | 74D14B8810554BF0C524166FDD41C9FC /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = ""; };
139 | 762FDA22A2618EA78A4A99A3F1F272C8 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/UIImage+ForceDecode.m"; sourceTree = ""; };
140 | 788A2959560C16956E792649F8EF66A7 /* SSCycleScrollView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SSCycleScrollView.modulemap; sourceTree = ""; };
141 | 7B6BF35C90CF8C0CDE320AC004E3B214 /* SSCycleScrollView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSCycleScrollView-umbrella.h"; sourceTree = ""; };
142 | 7DAFE0C1B4F37004F41C9F4B280806D2 /* SSCycleScrollView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SSCycleScrollView-dummy.m"; sourceTree = ""; };
143 | 7E7DEE2E4FA4D4BD4FFFA2C79236ADCE /* Pods_SSCycleScrollDemo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SSCycleScrollDemo.framework; path = "Pods-SSCycleScrollDemo.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
144 | 8282929CCF36A9E7F871E7843D578686 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/NSData+ImageContentType.h"; sourceTree = ""; };
145 | 8B7B91165245616FAB7857D2F4FE2B95 /* Pods-SSCycleScrollDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SSCycleScrollDemo.debug.xcconfig"; sourceTree = ""; };
146 | 8D9205063853923A43BEA78F70A9881C /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/SDWebImagePrefetcher.m; sourceTree = ""; };
147 | 8DEAE6694784C1E192E792795522C98E /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/SDWebImageManager.m; sourceTree = ""; };
148 | 8E7F986079B1F10E7BF47146906B5EA0 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/SDWebImageDownloader.h; sourceTree = ""; };
149 | 9187633E7D3B565B6DD18987CE547D8A /* NSImage+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+WebCache.m"; path = "SDWebImage/NSImage+WebCache.m"; sourceTree = ""; };
150 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
151 | 957DE53A94031623728D3DF3AB2C4433 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/SDWebImageTransition.m; sourceTree = ""; };
152 | A0BFADA7BEA6198A1D63AFA6EEAD22C1 /* SDWebImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageFrame.h; path = SDWebImage/SDWebImageFrame.h; sourceTree = ""; };
153 | AD594E84E49E0E8D28B5D0E9A1E2267A /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/SDImageCacheConfig.h; sourceTree = ""; };
154 | AE63716D434445533A7D59F3063ADE9C /* SSCycleScrollView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSCycleScrollView.xcconfig; sourceTree = ""; };
155 | B0462EC0CF5495E6F9909C42006DDACB /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/UIImage+MultiFormat.m"; sourceTree = ""; };
156 | B46A60312E1A70F912109284020460BB /* SSCycleScrollView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSCycleScrollView-prefix.pch"; sourceTree = ""; };
157 | B4D416D864E6EFEE77FF4C25DC003882 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/NSButton+WebCache.h"; sourceTree = ""; };
158 | B6767104C1FCE712A65D570289484FC2 /* SDWebImageImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageImageIOCoder.h; path = SDWebImage/SDWebImageImageIOCoder.h; sourceTree = ""; };
159 | B770771C608F3B0FE3322A0BA03A5803 /* SDWebImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCodersManager.h; path = SDWebImage/SDWebImageCodersManager.h; sourceTree = ""; };
160 | BFD00E5BDED1658D1EC2246C274628A0 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/UIView+WebCache.h"; sourceTree = ""; };
161 | C0992850DACE8EBF51AA59ED92F39424 /* Pods-SSCycleScrollDemo-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SSCycleScrollDemo-resources.sh"; sourceTree = ""; };
162 | C2ED1B72DE451BFC1B87C557E6BBC04F /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/SDAnimatedImageRep.h; sourceTree = ""; };
163 | C933974E86C4A8FD989F2528535CF7D0 /* SSCycleScrollView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SSCycleScrollView.framework; path = SSCycleScrollView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
164 | CAA4864BECB9CE289F8949B92E4030B8 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = ""; };
165 | CBD38D14CEE1017CC1DE8F8BFE438B9C /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/UIView+WebCache.m"; sourceTree = ""; };
166 | CC598E0D6818B11DD5DC708D3F3A6883 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/SDImageCacheConfig.m; sourceTree = ""; };
167 | CEBAAACD2758031DFE2F566308FE9AB9 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/SDWebImageDownloaderOperation.m; sourceTree = ""; };
168 | D30A329517A0EA9DA4691ECD68588BEE /* SSCycleScrollView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = SSCycleScrollView.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
169 | D4D3AAED32A46D54A3D359A5A714F9A8 /* SSCycleScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSCycleScrollView.swift; path = SSCycleScrollView/SSCycleScrollView.swift; sourceTree = ""; };
170 | D51263AEF33F8BF027FB9BD35AFF704B /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
171 | D56DB7023C499F9F2772C7B6584F725E /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/UIImage+MultiFormat.h"; sourceTree = ""; };
172 | D71C9A1CE70C55049350CBC0E5A89CE6 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/UIImage+GIF.m"; sourceTree = ""; };
173 | D777652FEAE2FBAF933A6BF0B4CCF528 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = ""; };
174 | D9277DC892F54ECD217E961EFB2D9E87 /* Pods-SSCycleScrollDemo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SSCycleScrollDemo-dummy.m"; sourceTree = ""; };
175 | E398CF1CB81172808A4BC994DFCEC383 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; };
176 | E3A4F923D4C314E45B7D0779B2E3A2C0 /* SDWebImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageGIFCoder.h; path = SDWebImage/SDWebImageGIFCoder.h; sourceTree = ""; };
177 | EA12ACD3279C672484691833E5BF97FB /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/SDWebImagePrefetcher.h; sourceTree = ""; };
178 | EA5F89792B0615A7E8450080A7046B64 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/UIImageView+HighlightedWebCache.h"; sourceTree = ""; };
179 | EBA4A1BCD3751357F96AC035A739D502 /* SDWebImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCodersManager.m; path = SDWebImage/SDWebImageCodersManager.m; sourceTree = ""; };
180 | ED9F654B1721CC52C147286614CD7DBF /* SDWebImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCoder.m; path = SDWebImage/SDWebImageCoder.m; sourceTree = ""; };
181 | EE37ABE7A69E291E1C46A5DD9EA6CC34 /* SDWebImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageFrame.m; path = SDWebImage/SDWebImageFrame.m; sourceTree = ""; };
182 | F21527077EA6A3F94689BF51255706E9 /* Pods-SSCycleScrollDemo-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SSCycleScrollDemo-frameworks.sh"; sourceTree = ""; };
183 | F45D866B645CF1E845C397984E499682 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/SDWebImageCompat.m; sourceTree = ""; };
184 | F91D1D23A154BCB4DA9B46ABE3025A53 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/UIImage+ForceDecode.h"; sourceTree = ""; };
185 | FCE1FDA5BDBFF117AB7E7B51EC3F750D /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = ""; };
186 | FFC3DC18666EE9E6763834DC3D5C2C64 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; };
187 | /* End PBXFileReference section */
188 |
189 | /* Begin PBXFrameworksBuildPhase section */
190 | 72623EED873361D69EECCAE9CF9D6D84 /* Frameworks */ = {
191 | isa = PBXFrameworksBuildPhase;
192 | buildActionMask = 2147483647;
193 | files = (
194 | 43495D08E5827C6E5B2F1771E0C66965 /* Foundation.framework in Frameworks */,
195 | 5B2F5DCC645D5BB431534E0DE30DD9A4 /* SDWebImage.framework in Frameworks */,
196 | );
197 | runOnlyForDeploymentPostprocessing = 0;
198 | };
199 | 7BCAAEED291A0FBCB98662AFB7298CC8 /* Frameworks */ = {
200 | isa = PBXFrameworksBuildPhase;
201 | buildActionMask = 2147483647;
202 | files = (
203 | 534056BEBD6CCE9291FD74CB09EB47C4 /* Foundation.framework in Frameworks */,
204 | 49B9C866268746A2FDF588100C328945 /* ImageIO.framework in Frameworks */,
205 | );
206 | runOnlyForDeploymentPostprocessing = 0;
207 | };
208 | B5D2AFB41361B47370BB4D19DBA2AB37 /* Frameworks */ = {
209 | isa = PBXFrameworksBuildPhase;
210 | buildActionMask = 2147483647;
211 | files = (
212 | DCDB0FEF8D420BB7658DFAFDA58BB277 /* Foundation.framework in Frameworks */,
213 | );
214 | runOnlyForDeploymentPostprocessing = 0;
215 | };
216 | /* End PBXFrameworksBuildPhase section */
217 |
218 | /* Begin PBXGroup section */
219 | 23EAA5D571397353D4D311351A2D82BB /* Frameworks */ = {
220 | isa = PBXGroup;
221 | children = (
222 | D51263AEF33F8BF027FB9BD35AFF704B /* SDWebImage.framework */,
223 | 40A7F9221F0516C497DC2D13A170D7B1 /* iOS */,
224 | );
225 | name = Frameworks;
226 | sourceTree = "";
227 | };
228 | 24CC64B70A4C4D0C23EF52B0C1A48901 /* Products */ = {
229 | isa = PBXGroup;
230 | children = (
231 | 7E7DEE2E4FA4D4BD4FFFA2C79236ADCE /* Pods_SSCycleScrollDemo.framework */,
232 | 16355C89098D9DED775E86A095357453 /* SDWebImage.framework */,
233 | C933974E86C4A8FD989F2528535CF7D0 /* SSCycleScrollView.framework */,
234 | );
235 | name = Products;
236 | sourceTree = "";
237 | };
238 | 322972850BE22D9B70E860AB9D7A4504 /* Support Files */ = {
239 | isa = PBXGroup;
240 | children = (
241 | 1CD76676C331E7DA77A337A6C3256825 /* Info.plist */,
242 | 46474AD369242A80804775449682635D /* SDWebImage.modulemap */,
243 | FFC3DC18666EE9E6763834DC3D5C2C64 /* SDWebImage.xcconfig */,
244 | 20AF8B4983CFAB24A28410C95B331D69 /* SDWebImage-dummy.m */,
245 | 30D03175A5A9E06CC165EAC345E55B56 /* SDWebImage-prefix.pch */,
246 | E398CF1CB81172808A4BC994DFCEC383 /* SDWebImage-umbrella.h */,
247 | );
248 | name = "Support Files";
249 | path = "../Target Support Files/SDWebImage";
250 | sourceTree = "";
251 | };
252 | 34953C789EA79F0081AD6D7694329D34 /* SDWebImage */ = {
253 | isa = PBXGroup;
254 | children = (
255 | 778737FF0BD86A82CAFC9CF3C736CDE6 /* Core */,
256 | 322972850BE22D9B70E860AB9D7A4504 /* Support Files */,
257 | );
258 | name = SDWebImage;
259 | path = SDWebImage;
260 | sourceTree = "";
261 | };
262 | 40A7F9221F0516C497DC2D13A170D7B1 /* iOS */ = {
263 | isa = PBXGroup;
264 | children = (
265 | 4479C8599476854863894A2C35EB8342 /* Foundation.framework */,
266 | 14F8A2C375F17ECA4486050A2B5EBB11 /* ImageIO.framework */,
267 | );
268 | name = iOS;
269 | sourceTree = "";
270 | };
271 | 4EFF45D28F72EE6AB99DB159B91EBDC4 /* Pod */ = {
272 | isa = PBXGroup;
273 | children = (
274 | 4175E8D92CB49EE9EC32195008827C71 /* LICENSE */,
275 | D30A329517A0EA9DA4691ECD68588BEE /* SSCycleScrollView.podspec */,
276 | );
277 | name = Pod;
278 | sourceTree = "";
279 | };
280 | 778737FF0BD86A82CAFC9CF3C736CDE6 /* Core */ = {
281 | isa = PBXGroup;
282 | children = (
283 | B4D416D864E6EFEE77FF4C25DC003882 /* NSButton+WebCache.h */,
284 | 55A8D4876A10332B9C5B5CB22B36C938 /* NSButton+WebCache.m */,
285 | 8282929CCF36A9E7F871E7843D578686 /* NSData+ImageContentType.h */,
286 | 62A29242F48BA6484D8142E49C405C54 /* NSData+ImageContentType.m */,
287 | 013A7EA6027B2098D2A66A586DB8DB4D /* NSImage+WebCache.h */,
288 | 9187633E7D3B565B6DD18987CE547D8A /* NSImage+WebCache.m */,
289 | C2ED1B72DE451BFC1B87C557E6BBC04F /* SDAnimatedImageRep.h */,
290 | 43BBE11E556856E28F0F15A8E2661AF2 /* SDAnimatedImageRep.m */,
291 | 0906D08281D20DB090281EC2DEB64F37 /* SDImageCache.h */,
292 | 71E06730A8EC6D03D612A708A7382699 /* SDImageCache.m */,
293 | AD594E84E49E0E8D28B5D0E9A1E2267A /* SDImageCacheConfig.h */,
294 | CC598E0D6818B11DD5DC708D3F3A6883 /* SDImageCacheConfig.m */,
295 | 57A526FB1CE6377077D60EE4C6148515 /* SDWebImageCoder.h */,
296 | ED9F654B1721CC52C147286614CD7DBF /* SDWebImageCoder.m */,
297 | 3343DA38013ACA3779FD4B4A2BB65C70 /* SDWebImageCoderHelper.h */,
298 | 48A6943A4394C4051BDFD2A4F1B3ADF6 /* SDWebImageCoderHelper.m */,
299 | B770771C608F3B0FE3322A0BA03A5803 /* SDWebImageCodersManager.h */,
300 | EBA4A1BCD3751357F96AC035A739D502 /* SDWebImageCodersManager.m */,
301 | 07F9F609611642409A92A22C629F294F /* SDWebImageCompat.h */,
302 | F45D866B645CF1E845C397984E499682 /* SDWebImageCompat.m */,
303 | 8E7F986079B1F10E7BF47146906B5EA0 /* SDWebImageDownloader.h */,
304 | 187351004E3F6054A9410D8CBAD04D66 /* SDWebImageDownloader.m */,
305 | 4901C35B74FFB53AEF0BDC868F710834 /* SDWebImageDownloaderOperation.h */,
306 | CEBAAACD2758031DFE2F566308FE9AB9 /* SDWebImageDownloaderOperation.m */,
307 | A0BFADA7BEA6198A1D63AFA6EEAD22C1 /* SDWebImageFrame.h */,
308 | EE37ABE7A69E291E1C46A5DD9EA6CC34 /* SDWebImageFrame.m */,
309 | E3A4F923D4C314E45B7D0779B2E3A2C0 /* SDWebImageGIFCoder.h */,
310 | 734C3DA88EE2E9541FEC6D97CB0148E3 /* SDWebImageGIFCoder.m */,
311 | B6767104C1FCE712A65D570289484FC2 /* SDWebImageImageIOCoder.h */,
312 | 1B4BDE292BB00F4E814F68B2C2F75EF7 /* SDWebImageImageIOCoder.m */,
313 | D777652FEAE2FBAF933A6BF0B4CCF528 /* SDWebImageManager.h */,
314 | 8DEAE6694784C1E192E792795522C98E /* SDWebImageManager.m */,
315 | 5D46AEE64BA645CB9605EAC174EE4E8E /* SDWebImageOperation.h */,
316 | EA12ACD3279C672484691833E5BF97FB /* SDWebImagePrefetcher.h */,
317 | 8D9205063853923A43BEA78F70A9881C /* SDWebImagePrefetcher.m */,
318 | 57E27B00C17DFF5342687CA00413DAC2 /* SDWebImageTransition.h */,
319 | 957DE53A94031623728D3DF3AB2C4433 /* SDWebImageTransition.m */,
320 | 413FADCDF24126D21DEE85687A9F2B30 /* UIButton+WebCache.h */,
321 | CAA4864BECB9CE289F8949B92E4030B8 /* UIButton+WebCache.m */,
322 | F91D1D23A154BCB4DA9B46ABE3025A53 /* UIImage+ForceDecode.h */,
323 | 762FDA22A2618EA78A4A99A3F1F272C8 /* UIImage+ForceDecode.m */,
324 | 1046AE6E70E6F9193DCA12665C97498C /* UIImage+GIF.h */,
325 | D71C9A1CE70C55049350CBC0E5A89CE6 /* UIImage+GIF.m */,
326 | D56DB7023C499F9F2772C7B6584F725E /* UIImage+MultiFormat.h */,
327 | B0462EC0CF5495E6F9909C42006DDACB /* UIImage+MultiFormat.m */,
328 | EA5F89792B0615A7E8450080A7046B64 /* UIImageView+HighlightedWebCache.h */,
329 | 74D14B8810554BF0C524166FDD41C9FC /* UIImageView+HighlightedWebCache.m */,
330 | FCE1FDA5BDBFF117AB7E7B51EC3F750D /* UIImageView+WebCache.h */,
331 | 02356DBEE78161CD16A787EC599B3908 /* UIImageView+WebCache.m */,
332 | BFD00E5BDED1658D1EC2246C274628A0 /* UIView+WebCache.h */,
333 | CBD38D14CEE1017CC1DE8F8BFE438B9C /* UIView+WebCache.m */,
334 | 5C35061D0122913AAEFEF2373CB51976 /* UIView+WebCacheOperation.h */,
335 | 396B5B5A50A2B9C2B5A2BDF97F6792D1 /* UIView+WebCacheOperation.m */,
336 | );
337 | name = Core;
338 | sourceTree = "";
339 | };
340 | 7DB346D0F39D3F0E887471402A8071AB = {
341 | isa = PBXGroup;
342 | children = (
343 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
344 | D72E3F80AFEFD0C6C2D4649924F8E4EF /* Development Pods */,
345 | 23EAA5D571397353D4D311351A2D82BB /* Frameworks */,
346 | BF4B13718B20D23D5B220FA33C2583D8 /* Pods */,
347 | 24CC64B70A4C4D0C23EF52B0C1A48901 /* Products */,
348 | 813C21A3D9DD5E319C065F1CB5E0CFAD /* Targets Support Files */,
349 | );
350 | sourceTree = "";
351 | };
352 | 7FFCB5ED73030439856ECC4932606AF7 /* Support Files */ = {
353 | isa = PBXGroup;
354 | children = (
355 | 4DD5866B7BA9F3580968F5CD2CBBE9B3 /* Info.plist */,
356 | 788A2959560C16956E792649F8EF66A7 /* SSCycleScrollView.modulemap */,
357 | AE63716D434445533A7D59F3063ADE9C /* SSCycleScrollView.xcconfig */,
358 | 7DAFE0C1B4F37004F41C9F4B280806D2 /* SSCycleScrollView-dummy.m */,
359 | B46A60312E1A70F912109284020460BB /* SSCycleScrollView-prefix.pch */,
360 | 7B6BF35C90CF8C0CDE320AC004E3B214 /* SSCycleScrollView-umbrella.h */,
361 | );
362 | name = "Support Files";
363 | path = "../SSCycleScrollDemo/Pods/Target Support Files/SSCycleScrollView";
364 | sourceTree = "";
365 | };
366 | 813C21A3D9DD5E319C065F1CB5E0CFAD /* Targets Support Files */ = {
367 | isa = PBXGroup;
368 | children = (
369 | 83E7AD52D475A8B12F5B095E6E38DF8E /* Pods-SSCycleScrollDemo */,
370 | );
371 | name = "Targets Support Files";
372 | sourceTree = "";
373 | };
374 | 83E7AD52D475A8B12F5B095E6E38DF8E /* Pods-SSCycleScrollDemo */ = {
375 | isa = PBXGroup;
376 | children = (
377 | 06053B94842F3CAB74CA18736D78ABA2 /* Info.plist */,
378 | 1EEE102462D866B4B5C2C67F85EAB18D /* Pods-SSCycleScrollDemo.modulemap */,
379 | 48EE75E424D9AB25E7D8CB7C829B7EFE /* Pods-SSCycleScrollDemo-acknowledgements.markdown */,
380 | 222FA57C66E5B0C2235B591DB7D89ED2 /* Pods-SSCycleScrollDemo-acknowledgements.plist */,
381 | D9277DC892F54ECD217E961EFB2D9E87 /* Pods-SSCycleScrollDemo-dummy.m */,
382 | F21527077EA6A3F94689BF51255706E9 /* Pods-SSCycleScrollDemo-frameworks.sh */,
383 | C0992850DACE8EBF51AA59ED92F39424 /* Pods-SSCycleScrollDemo-resources.sh */,
384 | 083058ACAF4FD4DB2B4F035807246BDB /* Pods-SSCycleScrollDemo-umbrella.h */,
385 | 8B7B91165245616FAB7857D2F4FE2B95 /* Pods-SSCycleScrollDemo.debug.xcconfig */,
386 | 0A7129FCC024CEE0C40AA02922B5CA53 /* Pods-SSCycleScrollDemo.release.xcconfig */,
387 | );
388 | name = "Pods-SSCycleScrollDemo";
389 | path = "Target Support Files/Pods-SSCycleScrollDemo";
390 | sourceTree = "";
391 | };
392 | BF4B13718B20D23D5B220FA33C2583D8 /* Pods */ = {
393 | isa = PBXGroup;
394 | children = (
395 | 34953C789EA79F0081AD6D7694329D34 /* SDWebImage */,
396 | );
397 | name = Pods;
398 | sourceTree = "";
399 | };
400 | D72E3F80AFEFD0C6C2D4649924F8E4EF /* Development Pods */ = {
401 | isa = PBXGroup;
402 | children = (
403 | F4D748706CDA108298707EE91F85717C /* SSCycleScrollView */,
404 | );
405 | name = "Development Pods";
406 | sourceTree = "";
407 | };
408 | F4D748706CDA108298707EE91F85717C /* SSCycleScrollView */ = {
409 | isa = PBXGroup;
410 | children = (
411 | D4D3AAED32A46D54A3D359A5A714F9A8 /* SSCycleScrollView.swift */,
412 | 4EFF45D28F72EE6AB99DB159B91EBDC4 /* Pod */,
413 | 7FFCB5ED73030439856ECC4932606AF7 /* Support Files */,
414 | );
415 | name = SSCycleScrollView;
416 | path = ../../SSCycleScrollView;
417 | sourceTree = "";
418 | };
419 | /* End PBXGroup section */
420 |
421 | /* Begin PBXHeadersBuildPhase section */
422 | 0C8EA387A74DC0FE6F52ED1D626C15C4 /* Headers */ = {
423 | isa = PBXHeadersBuildPhase;
424 | buildActionMask = 2147483647;
425 | files = (
426 | D13A12540D1E9084AAF7EE00EA29557E /* NSButton+WebCache.h in Headers */,
427 | D85F5E1FB3784774A61AB815C32E34E1 /* NSData+ImageContentType.h in Headers */,
428 | AFA740517DD021EE6E4F4B77AB4B526B /* NSImage+WebCache.h in Headers */,
429 | 76911EB4A3BD754497B9612246686955 /* SDAnimatedImageRep.h in Headers */,
430 | E00647534002D0E385B019F44A11D299 /* SDImageCache.h in Headers */,
431 | 18E196CB9CC50E13B601CFD95E474CEE /* SDImageCacheConfig.h in Headers */,
432 | CA4BE280F16EC09F34A36C1754D24C45 /* SDWebImage-umbrella.h in Headers */,
433 | F1E85863F688879E5AD08B0BE1109059 /* SDWebImageCoder.h in Headers */,
434 | 4FB1369211D58A7207ED955838B38512 /* SDWebImageCoderHelper.h in Headers */,
435 | 0A378AF42832C7E5401E802CB659D528 /* SDWebImageCodersManager.h in Headers */,
436 | 7BCF641DA01B0E33F3403D665B13637E /* SDWebImageCompat.h in Headers */,
437 | 47F5A12AFCE9DB605FFC8087162B0AE0 /* SDWebImageDownloader.h in Headers */,
438 | 1E8CA5F7A83645430788F9376EABE274 /* SDWebImageDownloaderOperation.h in Headers */,
439 | 128A9E7A1012FED97B2F741E65CBDEF3 /* SDWebImageFrame.h in Headers */,
440 | 0414D7FB5CD75515DFE74E712CF3A9D1 /* SDWebImageGIFCoder.h in Headers */,
441 | 378BADDDAFA40F8937691B1DFDD733A8 /* SDWebImageImageIOCoder.h in Headers */,
442 | F34C6BE1520B44EDE16B8C0A69E523B2 /* SDWebImageManager.h in Headers */,
443 | ED194BDE1C219975889E0BAC50C1C2ED /* SDWebImageOperation.h in Headers */,
444 | CA5D3532EDD73BC3BE778F46C09FC4EF /* SDWebImagePrefetcher.h in Headers */,
445 | C3E45121784701672AA214837C53EEB4 /* SDWebImageTransition.h in Headers */,
446 | E4F985D1BBC141991EAF46E8B557811F /* UIButton+WebCache.h in Headers */,
447 | 5B77EF94713EBD1F1E867C3924E0706F /* UIImage+ForceDecode.h in Headers */,
448 | E88D471004C4D3B31EF3B6B9024E01BA /* UIImage+GIF.h in Headers */,
449 | 124358C65C76337AB3A998979E131FCA /* UIImage+MultiFormat.h in Headers */,
450 | 1166A94CE275D8B32F388E6DDDAD2604 /* UIImageView+HighlightedWebCache.h in Headers */,
451 | A561EA79D454AC34666E41CC825AA422 /* UIImageView+WebCache.h in Headers */,
452 | D87652279B255C9FD193C7949BBE770F /* UIView+WebCache.h in Headers */,
453 | CE378AFA51B03084877DCB1D7C93E514 /* UIView+WebCacheOperation.h in Headers */,
454 | );
455 | runOnlyForDeploymentPostprocessing = 0;
456 | };
457 | 4B00E84BBAB11C4E45E1F658122B05E6 /* Headers */ = {
458 | isa = PBXHeadersBuildPhase;
459 | buildActionMask = 2147483647;
460 | files = (
461 | F0A0BA50D38B28771CE5ECA6F0FB02D5 /* SSCycleScrollView-umbrella.h in Headers */,
462 | );
463 | runOnlyForDeploymentPostprocessing = 0;
464 | };
465 | 55FC40CB7628400BC6477723C0962EBE /* Headers */ = {
466 | isa = PBXHeadersBuildPhase;
467 | buildActionMask = 2147483647;
468 | files = (
469 | E3FDD12BDFA4D33FFC50BE8160C2E34F /* Pods-SSCycleScrollDemo-umbrella.h in Headers */,
470 | );
471 | runOnlyForDeploymentPostprocessing = 0;
472 | };
473 | /* End PBXHeadersBuildPhase section */
474 |
475 | /* Begin PBXNativeTarget section */
476 | 3404ECCA63C76E4578EEF7CBBA451E52 /* Pods-SSCycleScrollDemo */ = {
477 | isa = PBXNativeTarget;
478 | buildConfigurationList = 51C5C3883D1822BB2CECCC0C7BB9CB4E /* Build configuration list for PBXNativeTarget "Pods-SSCycleScrollDemo" */;
479 | buildPhases = (
480 | 15753A2D068E3886CE21681EE7D0D57C /* Sources */,
481 | B5D2AFB41361B47370BB4D19DBA2AB37 /* Frameworks */,
482 | 55FC40CB7628400BC6477723C0962EBE /* Headers */,
483 | );
484 | buildRules = (
485 | );
486 | dependencies = (
487 | 910FA70E597EB5E06B33481FCCF2D790 /* PBXTargetDependency */,
488 | 0963489133BC6EDC0749563AFE1AB56A /* PBXTargetDependency */,
489 | );
490 | name = "Pods-SSCycleScrollDemo";
491 | productName = "Pods-SSCycleScrollDemo";
492 | productReference = 7E7DEE2E4FA4D4BD4FFFA2C79236ADCE /* Pods_SSCycleScrollDemo.framework */;
493 | productType = "com.apple.product-type.framework";
494 | };
495 | 9A416268E9C6128F50CC606D58191C46 /* SDWebImage */ = {
496 | isa = PBXNativeTarget;
497 | buildConfigurationList = E104B3C7BB388DAC1D2232D68DF67224 /* Build configuration list for PBXNativeTarget "SDWebImage" */;
498 | buildPhases = (
499 | A2D88BDCF0C33AC7A912576E51F8074D /* Sources */,
500 | 7BCAAEED291A0FBCB98662AFB7298CC8 /* Frameworks */,
501 | 0C8EA387A74DC0FE6F52ED1D626C15C4 /* Headers */,
502 | );
503 | buildRules = (
504 | );
505 | dependencies = (
506 | );
507 | name = SDWebImage;
508 | productName = SDWebImage;
509 | productReference = 16355C89098D9DED775E86A095357453 /* SDWebImage.framework */;
510 | productType = "com.apple.product-type.framework";
511 | };
512 | F800E203677CC1736B1A983C68EB2F08 /* SSCycleScrollView */ = {
513 | isa = PBXNativeTarget;
514 | buildConfigurationList = 630DBDE2C268901056281A226C9CC37D /* Build configuration list for PBXNativeTarget "SSCycleScrollView" */;
515 | buildPhases = (
516 | 8049E6E25EC8AFB4B8FB77EE8B32620B /* Sources */,
517 | 72623EED873361D69EECCAE9CF9D6D84 /* Frameworks */,
518 | 4B00E84BBAB11C4E45E1F658122B05E6 /* Headers */,
519 | );
520 | buildRules = (
521 | );
522 | dependencies = (
523 | 14D95DDEFDC64F7F8AA2A14DD19A4C19 /* PBXTargetDependency */,
524 | );
525 | name = SSCycleScrollView;
526 | productName = SSCycleScrollView;
527 | productReference = C933974E86C4A8FD989F2528535CF7D0 /* SSCycleScrollView.framework */;
528 | productType = "com.apple.product-type.framework";
529 | };
530 | /* End PBXNativeTarget section */
531 |
532 | /* Begin PBXProject section */
533 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
534 | isa = PBXProject;
535 | attributes = {
536 | LastSwiftUpdateCheck = 0930;
537 | LastUpgradeCheck = 0930;
538 | };
539 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
540 | compatibilityVersion = "Xcode 3.2";
541 | developmentRegion = English;
542 | hasScannedForEncodings = 0;
543 | knownRegions = (
544 | en,
545 | );
546 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
547 | productRefGroup = 24CC64B70A4C4D0C23EF52B0C1A48901 /* Products */;
548 | projectDirPath = "";
549 | projectRoot = "";
550 | targets = (
551 | 3404ECCA63C76E4578EEF7CBBA451E52 /* Pods-SSCycleScrollDemo */,
552 | 9A416268E9C6128F50CC606D58191C46 /* SDWebImage */,
553 | F800E203677CC1736B1A983C68EB2F08 /* SSCycleScrollView */,
554 | );
555 | };
556 | /* End PBXProject section */
557 |
558 | /* Begin PBXSourcesBuildPhase section */
559 | 15753A2D068E3886CE21681EE7D0D57C /* Sources */ = {
560 | isa = PBXSourcesBuildPhase;
561 | buildActionMask = 2147483647;
562 | files = (
563 | E1837868C5EEA535A9F561FE8ACD8994 /* Pods-SSCycleScrollDemo-dummy.m in Sources */,
564 | );
565 | runOnlyForDeploymentPostprocessing = 0;
566 | };
567 | 8049E6E25EC8AFB4B8FB77EE8B32620B /* Sources */ = {
568 | isa = PBXSourcesBuildPhase;
569 | buildActionMask = 2147483647;
570 | files = (
571 | A7B3589415B208B33D51B4938A40D86F /* SSCycleScrollView-dummy.m in Sources */,
572 | 5EEF2C2C8A7F44444EDBEBFFF4D7B140 /* SSCycleScrollView.swift in Sources */,
573 | );
574 | runOnlyForDeploymentPostprocessing = 0;
575 | };
576 | A2D88BDCF0C33AC7A912576E51F8074D /* Sources */ = {
577 | isa = PBXSourcesBuildPhase;
578 | buildActionMask = 2147483647;
579 | files = (
580 | CF3B06148943D44845F91143822B6895 /* NSButton+WebCache.m in Sources */,
581 | AB39A3B603E09C779A98D5E319F969CF /* NSData+ImageContentType.m in Sources */,
582 | 43379EE7A73A8EC10DE72EC59E65A84F /* NSImage+WebCache.m in Sources */,
583 | 0478CC77B94C4FFFD7E48D5F67E7BD15 /* SDAnimatedImageRep.m in Sources */,
584 | AAA60CD93DB530DE8341C30BBC7BAAE5 /* SDImageCache.m in Sources */,
585 | E6275F2F58261080AFA798497F93DE8B /* SDImageCacheConfig.m in Sources */,
586 | 07F2AD25677138EDAA12C1E9BEFA91E6 /* SDWebImage-dummy.m in Sources */,
587 | 1E544FF4C03E775571FCFAE4C861F55A /* SDWebImageCoder.m in Sources */,
588 | 07C4B31AB0D12E82351581324929BD47 /* SDWebImageCoderHelper.m in Sources */,
589 | 2D0F9A6AFC524EB7EB8D78284C0DE905 /* SDWebImageCodersManager.m in Sources */,
590 | BF1E26E2048AF4ED1A33A8F540FF45F7 /* SDWebImageCompat.m in Sources */,
591 | 168F978F4AF4D8F6016AD6B4CD3C424B /* SDWebImageDownloader.m in Sources */,
592 | B7ABEF83726383B555F27DAFD087F5C2 /* SDWebImageDownloaderOperation.m in Sources */,
593 | B3C7A473755E7EB6D542B3691FE35B2C /* SDWebImageFrame.m in Sources */,
594 | 39564226F403D640E6B21FA9ACC2EDA5 /* SDWebImageGIFCoder.m in Sources */,
595 | 6E04BC4561E8D9DA8508EB48CDBE15CB /* SDWebImageImageIOCoder.m in Sources */,
596 | 879E0A658A799220C776B340CAC55C02 /* SDWebImageManager.m in Sources */,
597 | 4141E6302B4F92D6A4E2FBDE768B2627 /* SDWebImagePrefetcher.m in Sources */,
598 | E5BF50F6FD4CB6042E59039F60EE7777 /* SDWebImageTransition.m in Sources */,
599 | 9FE3843DD75AD528996399D6ACFBF41A /* UIButton+WebCache.m in Sources */,
600 | 2E74FA391F0434756FF91E750E8C9ABA /* UIImage+ForceDecode.m in Sources */,
601 | 73056BBE1AB13E8205DAE448ED56FF95 /* UIImage+GIF.m in Sources */,
602 | 1972915AC299FBEB443967F4A9526151 /* UIImage+MultiFormat.m in Sources */,
603 | 6468B2188A512757D4EF5CF6EF49DDE1 /* UIImageView+HighlightedWebCache.m in Sources */,
604 | BED092AE510987B21A26BB3CE99C4F95 /* UIImageView+WebCache.m in Sources */,
605 | A8157B08BB1BDF85F0882121D88B310A /* UIView+WebCache.m in Sources */,
606 | 737CDB7BCD01174AFF3B98CC3C1BBB4D /* UIView+WebCacheOperation.m in Sources */,
607 | );
608 | runOnlyForDeploymentPostprocessing = 0;
609 | };
610 | /* End PBXSourcesBuildPhase section */
611 |
612 | /* Begin PBXTargetDependency section */
613 | 0963489133BC6EDC0749563AFE1AB56A /* PBXTargetDependency */ = {
614 | isa = PBXTargetDependency;
615 | name = SSCycleScrollView;
616 | target = F800E203677CC1736B1A983C68EB2F08 /* SSCycleScrollView */;
617 | targetProxy = 0544108CBCDDA35CC724662713731253 /* PBXContainerItemProxy */;
618 | };
619 | 14D95DDEFDC64F7F8AA2A14DD19A4C19 /* PBXTargetDependency */ = {
620 | isa = PBXTargetDependency;
621 | name = SDWebImage;
622 | target = 9A416268E9C6128F50CC606D58191C46 /* SDWebImage */;
623 | targetProxy = 1FBC8C367F1AFA970E9C06687616AB4F /* PBXContainerItemProxy */;
624 | };
625 | 910FA70E597EB5E06B33481FCCF2D790 /* PBXTargetDependency */ = {
626 | isa = PBXTargetDependency;
627 | name = SDWebImage;
628 | target = 9A416268E9C6128F50CC606D58191C46 /* SDWebImage */;
629 | targetProxy = 38A53D1E246CB0CB01FD1FB0D03302A7 /* PBXContainerItemProxy */;
630 | };
631 | /* End PBXTargetDependency section */
632 |
633 | /* Begin XCBuildConfiguration section */
634 | 112C2F28EA07E15C1C0E896D637FF7E9 /* Release */ = {
635 | isa = XCBuildConfiguration;
636 | baseConfigurationReference = 0A7129FCC024CEE0C40AA02922B5CA53 /* Pods-SSCycleScrollDemo.release.xcconfig */;
637 | buildSettings = {
638 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
639 | CODE_SIGN_IDENTITY = "";
640 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
641 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
642 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
643 | CURRENT_PROJECT_VERSION = 1;
644 | DEFINES_MODULE = YES;
645 | DYLIB_COMPATIBILITY_VERSION = 1;
646 | DYLIB_CURRENT_VERSION = 1;
647 | DYLIB_INSTALL_NAME_BASE = "@rpath";
648 | INFOPLIST_FILE = "Target Support Files/Pods-SSCycleScrollDemo/Info.plist";
649 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
650 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
651 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
652 | MACH_O_TYPE = staticlib;
653 | MODULEMAP_FILE = "Target Support Files/Pods-SSCycleScrollDemo/Pods-SSCycleScrollDemo.modulemap";
654 | OTHER_LDFLAGS = "";
655 | OTHER_LIBTOOLFLAGS = "";
656 | PODS_ROOT = "$(SRCROOT)";
657 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
658 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
659 | SDKROOT = iphoneos;
660 | SKIP_INSTALL = YES;
661 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
662 | TARGETED_DEVICE_FAMILY = "1,2";
663 | VALIDATE_PRODUCT = YES;
664 | VERSIONING_SYSTEM = "apple-generic";
665 | VERSION_INFO_PREFIX = "";
666 | };
667 | name = Release;
668 | };
669 | 1EE19F5DD95931924296F637BF18BD8F /* Debug */ = {
670 | isa = XCBuildConfiguration;
671 | buildSettings = {
672 | ALWAYS_SEARCH_USER_PATHS = NO;
673 | CLANG_ANALYZER_NONNULL = YES;
674 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
675 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
676 | CLANG_CXX_LIBRARY = "libc++";
677 | CLANG_ENABLE_MODULES = YES;
678 | CLANG_ENABLE_OBJC_ARC = YES;
679 | CLANG_ENABLE_OBJC_WEAK = YES;
680 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
681 | CLANG_WARN_BOOL_CONVERSION = YES;
682 | CLANG_WARN_COMMA = YES;
683 | CLANG_WARN_CONSTANT_CONVERSION = YES;
684 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
685 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
686 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
687 | CLANG_WARN_EMPTY_BODY = YES;
688 | CLANG_WARN_ENUM_CONVERSION = YES;
689 | CLANG_WARN_INFINITE_RECURSION = YES;
690 | CLANG_WARN_INT_CONVERSION = YES;
691 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
692 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
693 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
694 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
695 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
696 | CLANG_WARN_STRICT_PROTOTYPES = YES;
697 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
698 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
699 | CLANG_WARN_UNREACHABLE_CODE = YES;
700 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
701 | CODE_SIGNING_ALLOWED = NO;
702 | CODE_SIGNING_REQUIRED = NO;
703 | COPY_PHASE_STRIP = NO;
704 | DEBUG_INFORMATION_FORMAT = dwarf;
705 | ENABLE_STRICT_OBJC_MSGSEND = YES;
706 | ENABLE_TESTABILITY = YES;
707 | GCC_C_LANGUAGE_STANDARD = gnu11;
708 | GCC_DYNAMIC_NO_PIC = NO;
709 | GCC_NO_COMMON_BLOCKS = YES;
710 | GCC_OPTIMIZATION_LEVEL = 0;
711 | GCC_PREPROCESSOR_DEFINITIONS = (
712 | "POD_CONFIGURATION_DEBUG=1",
713 | "DEBUG=1",
714 | "$(inherited)",
715 | );
716 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
717 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
718 | GCC_WARN_UNDECLARED_SELECTOR = YES;
719 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
720 | GCC_WARN_UNUSED_FUNCTION = YES;
721 | GCC_WARN_UNUSED_VARIABLE = YES;
722 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
723 | MTL_ENABLE_DEBUG_INFO = YES;
724 | ONLY_ACTIVE_ARCH = YES;
725 | PRODUCT_NAME = "$(TARGET_NAME)";
726 | STRIP_INSTALLED_PRODUCT = NO;
727 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
728 | SYMROOT = "${SRCROOT}/../build";
729 | };
730 | name = Debug;
731 | };
732 | 221431547291BDE55D16661122E20E49 /* Release */ = {
733 | isa = XCBuildConfiguration;
734 | baseConfigurationReference = AE63716D434445533A7D59F3063ADE9C /* SSCycleScrollView.xcconfig */;
735 | buildSettings = {
736 | CODE_SIGN_IDENTITY = "";
737 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
738 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
739 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
740 | CURRENT_PROJECT_VERSION = 1;
741 | DEFINES_MODULE = YES;
742 | DYLIB_COMPATIBILITY_VERSION = 1;
743 | DYLIB_CURRENT_VERSION = 1;
744 | DYLIB_INSTALL_NAME_BASE = "@rpath";
745 | GCC_PREFIX_HEADER = "Target Support Files/SSCycleScrollView/SSCycleScrollView-prefix.pch";
746 | INFOPLIST_FILE = "Target Support Files/SSCycleScrollView/Info.plist";
747 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
748 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
749 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
750 | MODULEMAP_FILE = "Target Support Files/SSCycleScrollView/SSCycleScrollView.modulemap";
751 | PRODUCT_MODULE_NAME = SSCycleScrollView;
752 | PRODUCT_NAME = SSCycleScrollView;
753 | SDKROOT = iphoneos;
754 | SKIP_INSTALL = YES;
755 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
756 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
757 | SWIFT_VERSION = 4.1;
758 | TARGETED_DEVICE_FAMILY = "1,2";
759 | VALIDATE_PRODUCT = YES;
760 | VERSIONING_SYSTEM = "apple-generic";
761 | VERSION_INFO_PREFIX = "";
762 | };
763 | name = Release;
764 | };
765 | 26B6566000BAC2EC88C606C149110733 /* Debug */ = {
766 | isa = XCBuildConfiguration;
767 | baseConfigurationReference = 8B7B91165245616FAB7857D2F4FE2B95 /* Pods-SSCycleScrollDemo.debug.xcconfig */;
768 | buildSettings = {
769 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
770 | CODE_SIGN_IDENTITY = "";
771 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
772 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
773 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
774 | CURRENT_PROJECT_VERSION = 1;
775 | DEFINES_MODULE = YES;
776 | DYLIB_COMPATIBILITY_VERSION = 1;
777 | DYLIB_CURRENT_VERSION = 1;
778 | DYLIB_INSTALL_NAME_BASE = "@rpath";
779 | INFOPLIST_FILE = "Target Support Files/Pods-SSCycleScrollDemo/Info.plist";
780 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
781 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
782 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
783 | MACH_O_TYPE = staticlib;
784 | MODULEMAP_FILE = "Target Support Files/Pods-SSCycleScrollDemo/Pods-SSCycleScrollDemo.modulemap";
785 | OTHER_LDFLAGS = "";
786 | OTHER_LIBTOOLFLAGS = "";
787 | PODS_ROOT = "$(SRCROOT)";
788 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
789 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
790 | SDKROOT = iphoneos;
791 | SKIP_INSTALL = YES;
792 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
793 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
794 | TARGETED_DEVICE_FAMILY = "1,2";
795 | VERSIONING_SYSTEM = "apple-generic";
796 | VERSION_INFO_PREFIX = "";
797 | };
798 | name = Debug;
799 | };
800 | 3E77F736FE43C44C6705BB5B2A8FAC2D /* Release */ = {
801 | isa = XCBuildConfiguration;
802 | baseConfigurationReference = FFC3DC18666EE9E6763834DC3D5C2C64 /* SDWebImage.xcconfig */;
803 | buildSettings = {
804 | CODE_SIGN_IDENTITY = "";
805 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
806 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
807 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
808 | CURRENT_PROJECT_VERSION = 1;
809 | DEFINES_MODULE = YES;
810 | DYLIB_COMPATIBILITY_VERSION = 1;
811 | DYLIB_CURRENT_VERSION = 1;
812 | DYLIB_INSTALL_NAME_BASE = "@rpath";
813 | GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch";
814 | INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist";
815 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
816 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
817 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
818 | MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap";
819 | PRODUCT_MODULE_NAME = SDWebImage;
820 | PRODUCT_NAME = SDWebImage;
821 | SDKROOT = iphoneos;
822 | SKIP_INSTALL = YES;
823 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
824 | SWIFT_VERSION = 4.0;
825 | TARGETED_DEVICE_FAMILY = "1,2";
826 | VALIDATE_PRODUCT = YES;
827 | VERSIONING_SYSTEM = "apple-generic";
828 | VERSION_INFO_PREFIX = "";
829 | };
830 | name = Release;
831 | };
832 | 427C04238A3926C878D6A9DF59B20A23 /* Debug */ = {
833 | isa = XCBuildConfiguration;
834 | baseConfigurationReference = FFC3DC18666EE9E6763834DC3D5C2C64 /* SDWebImage.xcconfig */;
835 | buildSettings = {
836 | CODE_SIGN_IDENTITY = "";
837 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
838 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
839 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
840 | CURRENT_PROJECT_VERSION = 1;
841 | DEFINES_MODULE = YES;
842 | DYLIB_COMPATIBILITY_VERSION = 1;
843 | DYLIB_CURRENT_VERSION = 1;
844 | DYLIB_INSTALL_NAME_BASE = "@rpath";
845 | GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch";
846 | INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist";
847 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
848 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
849 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
850 | MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap";
851 | PRODUCT_MODULE_NAME = SDWebImage;
852 | PRODUCT_NAME = SDWebImage;
853 | SDKROOT = iphoneos;
854 | SKIP_INSTALL = YES;
855 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
856 | SWIFT_VERSION = 4.0;
857 | TARGETED_DEVICE_FAMILY = "1,2";
858 | VERSIONING_SYSTEM = "apple-generic";
859 | VERSION_INFO_PREFIX = "";
860 | };
861 | name = Debug;
862 | };
863 | 59818ECA5E5802EE2ED011DBD825CCFB /* Debug */ = {
864 | isa = XCBuildConfiguration;
865 | baseConfigurationReference = AE63716D434445533A7D59F3063ADE9C /* SSCycleScrollView.xcconfig */;
866 | buildSettings = {
867 | CODE_SIGN_IDENTITY = "";
868 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
869 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
870 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
871 | CURRENT_PROJECT_VERSION = 1;
872 | DEFINES_MODULE = YES;
873 | DYLIB_COMPATIBILITY_VERSION = 1;
874 | DYLIB_CURRENT_VERSION = 1;
875 | DYLIB_INSTALL_NAME_BASE = "@rpath";
876 | GCC_PREFIX_HEADER = "Target Support Files/SSCycleScrollView/SSCycleScrollView-prefix.pch";
877 | INFOPLIST_FILE = "Target Support Files/SSCycleScrollView/Info.plist";
878 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
879 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
880 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
881 | MODULEMAP_FILE = "Target Support Files/SSCycleScrollView/SSCycleScrollView.modulemap";
882 | PRODUCT_MODULE_NAME = SSCycleScrollView;
883 | PRODUCT_NAME = SSCycleScrollView;
884 | SDKROOT = iphoneos;
885 | SKIP_INSTALL = YES;
886 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
887 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
888 | SWIFT_VERSION = 4.1;
889 | TARGETED_DEVICE_FAMILY = "1,2";
890 | VERSIONING_SYSTEM = "apple-generic";
891 | VERSION_INFO_PREFIX = "";
892 | };
893 | name = Debug;
894 | };
895 | F4568DEE257655D290C2B9CEAB37C934 /* Release */ = {
896 | isa = XCBuildConfiguration;
897 | buildSettings = {
898 | ALWAYS_SEARCH_USER_PATHS = NO;
899 | CLANG_ANALYZER_NONNULL = YES;
900 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
901 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
902 | CLANG_CXX_LIBRARY = "libc++";
903 | CLANG_ENABLE_MODULES = YES;
904 | CLANG_ENABLE_OBJC_ARC = YES;
905 | CLANG_ENABLE_OBJC_WEAK = YES;
906 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
907 | CLANG_WARN_BOOL_CONVERSION = YES;
908 | CLANG_WARN_COMMA = YES;
909 | CLANG_WARN_CONSTANT_CONVERSION = YES;
910 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
911 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
912 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
913 | CLANG_WARN_EMPTY_BODY = YES;
914 | CLANG_WARN_ENUM_CONVERSION = YES;
915 | CLANG_WARN_INFINITE_RECURSION = YES;
916 | CLANG_WARN_INT_CONVERSION = YES;
917 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
918 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
919 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
920 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
921 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
922 | CLANG_WARN_STRICT_PROTOTYPES = YES;
923 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
924 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
925 | CLANG_WARN_UNREACHABLE_CODE = YES;
926 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
927 | CODE_SIGNING_ALLOWED = NO;
928 | CODE_SIGNING_REQUIRED = NO;
929 | COPY_PHASE_STRIP = NO;
930 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
931 | ENABLE_NS_ASSERTIONS = NO;
932 | ENABLE_STRICT_OBJC_MSGSEND = YES;
933 | GCC_C_LANGUAGE_STANDARD = gnu11;
934 | GCC_NO_COMMON_BLOCKS = YES;
935 | GCC_PREPROCESSOR_DEFINITIONS = (
936 | "POD_CONFIGURATION_RELEASE=1",
937 | "$(inherited)",
938 | );
939 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
940 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
941 | GCC_WARN_UNDECLARED_SELECTOR = YES;
942 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
943 | GCC_WARN_UNUSED_FUNCTION = YES;
944 | GCC_WARN_UNUSED_VARIABLE = YES;
945 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
946 | MTL_ENABLE_DEBUG_INFO = NO;
947 | PRODUCT_NAME = "$(TARGET_NAME)";
948 | STRIP_INSTALLED_PRODUCT = NO;
949 | SYMROOT = "${SRCROOT}/../build";
950 | };
951 | name = Release;
952 | };
953 | /* End XCBuildConfiguration section */
954 |
955 | /* Begin XCConfigurationList section */
956 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
957 | isa = XCConfigurationList;
958 | buildConfigurations = (
959 | 1EE19F5DD95931924296F637BF18BD8F /* Debug */,
960 | F4568DEE257655D290C2B9CEAB37C934 /* Release */,
961 | );
962 | defaultConfigurationIsVisible = 0;
963 | defaultConfigurationName = Release;
964 | };
965 | 51C5C3883D1822BB2CECCC0C7BB9CB4E /* Build configuration list for PBXNativeTarget "Pods-SSCycleScrollDemo" */ = {
966 | isa = XCConfigurationList;
967 | buildConfigurations = (
968 | 26B6566000BAC2EC88C606C149110733 /* Debug */,
969 | 112C2F28EA07E15C1C0E896D637FF7E9 /* Release */,
970 | );
971 | defaultConfigurationIsVisible = 0;
972 | defaultConfigurationName = Release;
973 | };
974 | 630DBDE2C268901056281A226C9CC37D /* Build configuration list for PBXNativeTarget "SSCycleScrollView" */ = {
975 | isa = XCConfigurationList;
976 | buildConfigurations = (
977 | 59818ECA5E5802EE2ED011DBD825CCFB /* Debug */,
978 | 221431547291BDE55D16661122E20E49 /* Release */,
979 | );
980 | defaultConfigurationIsVisible = 0;
981 | defaultConfigurationName = Release;
982 | };
983 | E104B3C7BB388DAC1D2232D68DF67224 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = {
984 | isa = XCConfigurationList;
985 | buildConfigurations = (
986 | 427C04238A3926C878D6A9DF59B20A23 /* Debug */,
987 | 3E77F736FE43C44C6705BB5B2A8FAC2D /* Release */,
988 | );
989 | defaultConfigurationIsVisible = 0;
990 | defaultConfigurationName = Release;
991 | };
992 | /* End XCConfigurationList section */
993 | };
994 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
995 | }
996 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 2A1E12D21D509EFD003BE506 /* banner1.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 2A1E12D11D509EFD003BE506 /* banner1.jpg */; };
11 | 2A1E12D41D509FE7003BE506 /* banner3.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 2A1E12D31D509FE7003BE506 /* banner3.jpg */; };
12 | 2A1E12D61D50A02B003BE506 /* banner4.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 2A1E12D51D50A02B003BE506 /* banner4.jpg */; };
13 | 2AEFA1291DE6B57B0052F81C /* FirstViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AEFA1281DE6B57B0052F81C /* FirstViewController.swift */; };
14 | 3A8283B31C0412E1004E339F /* mainBottomBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 3A8283B21C0412E1004E339F /* mainBottomBackground.png */; };
15 | 3A9D56E11C040ADF000C3533 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A9D56E01C040ADF000C3533 /* AppDelegate.swift */; };
16 | 3A9D56E61C040AE0000C3533 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3A9D56E41C040AE0000C3533 /* Main.storyboard */; };
17 | 3A9D56E81C040AE0000C3533 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3A9D56E71C040AE0000C3533 /* Assets.xcassets */; };
18 | 3A9D56EB1C040AE0000C3533 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3A9D56E91C040AE0000C3533 /* LaunchScreen.storyboard */; };
19 | 3A9D56F91C040BB2000C3533 /* MainViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A9D56F21C040BB2000C3533 /* MainViewController.swift */; };
20 | 459CCB98BCAE77655377B6DF /* Pods_SSCycleScrollDemo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7CFD120999F48A5DBB8C134 /* Pods_SSCycleScrollDemo.framework */; };
21 | /* End PBXBuildFile section */
22 |
23 | /* Begin PBXCopyFilesBuildPhase section */
24 | 2A1E12C51D508C47003BE506 /* Embed Frameworks */ = {
25 | isa = PBXCopyFilesBuildPhase;
26 | buildActionMask = 2147483647;
27 | dstPath = "";
28 | dstSubfolderSpec = 10;
29 | files = (
30 | );
31 | name = "Embed Frameworks";
32 | runOnlyForDeploymentPostprocessing = 0;
33 | };
34 | /* End PBXCopyFilesBuildPhase section */
35 |
36 | /* Begin PBXFileReference section */
37 | 2A1E12D11D509EFD003BE506 /* banner1.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = banner1.jpg; sourceTree = ""; };
38 | 2A1E12D31D509FE7003BE506 /* banner3.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = banner3.jpg; sourceTree = ""; };
39 | 2A1E12D51D50A02B003BE506 /* banner4.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = banner4.jpg; sourceTree = ""; };
40 | 2AEFA1281DE6B57B0052F81C /* FirstViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FirstViewController.swift; sourceTree = ""; };
41 | 3A8283B21C0412E1004E339F /* mainBottomBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mainBottomBackground.png; sourceTree = ""; };
42 | 3A9D56DD1C040ADF000C3533 /* SSCycleScrollDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SSCycleScrollDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
43 | 3A9D56E01C040ADF000C3533 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
44 | 3A9D56E51C040AE0000C3533 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
45 | 3A9D56E71C040AE0000C3533 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
46 | 3A9D56EA1C040AE0000C3533 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
47 | 3A9D56EC1C040AE0000C3533 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
48 | 3A9D56F21C040BB2000C3533 /* MainViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainViewController.swift; sourceTree = ""; };
49 | 58EADB8D3E967A9E86057369 /* Pods-SSCycleScrollDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCycleScrollDemo.release.xcconfig"; path = "Pods/Target Support Files/Pods-SSCycleScrollDemo/Pods-SSCycleScrollDemo.release.xcconfig"; sourceTree = ""; };
50 | 80542A005AE6ED6E9A26042F /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; };
51 | 909ADF16AB38B13CDB3FBA66 /* Pods-SSCycleScrollDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCycleScrollDemo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SSCycleScrollDemo/Pods-SSCycleScrollDemo.debug.xcconfig"; sourceTree = ""; };
52 | B7CFD120999F48A5DBB8C134 /* Pods_SSCycleScrollDemo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SSCycleScrollDemo.framework; sourceTree = BUILT_PRODUCTS_DIR; };
53 | /* End PBXFileReference section */
54 |
55 | /* Begin PBXFrameworksBuildPhase section */
56 | 3A9D56DA1C040ADF000C3533 /* Frameworks */ = {
57 | isa = PBXFrameworksBuildPhase;
58 | buildActionMask = 2147483647;
59 | files = (
60 | 459CCB98BCAE77655377B6DF /* Pods_SSCycleScrollDemo.framework in Frameworks */,
61 | );
62 | runOnlyForDeploymentPostprocessing = 0;
63 | };
64 | /* End PBXFrameworksBuildPhase section */
65 |
66 | /* Begin PBXGroup section */
67 | 3A9D56D41C040ADF000C3533 = {
68 | isa = PBXGroup;
69 | children = (
70 | 3A9D56DF1C040ADF000C3533 /* SSCycleScrollDemo */,
71 | 3A9D56DE1C040ADF000C3533 /* Products */,
72 | AA8870CFB7E82F741A09A95D /* Frameworks */,
73 | 4C3C012F0493197B02CC7D5F /* Pods */,
74 | );
75 | sourceTree = "";
76 | };
77 | 3A9D56DE1C040ADF000C3533 /* Products */ = {
78 | isa = PBXGroup;
79 | children = (
80 | 3A9D56DD1C040ADF000C3533 /* SSCycleScrollDemo.app */,
81 | );
82 | name = Products;
83 | sourceTree = "";
84 | };
85 | 3A9D56DF1C040ADF000C3533 /* SSCycleScrollDemo */ = {
86 | isa = PBXGroup;
87 | children = (
88 | 3A9D56F21C040BB2000C3533 /* MainViewController.swift */,
89 | 2AEFA1281DE6B57B0052F81C /* FirstViewController.swift */,
90 | 3A9D56E01C040ADF000C3533 /* AppDelegate.swift */,
91 | 3A9D56E41C040AE0000C3533 /* Main.storyboard */,
92 | 3A9D56E71C040AE0000C3533 /* Assets.xcassets */,
93 | 3A9D56E91C040AE0000C3533 /* LaunchScreen.storyboard */,
94 | 3A9D56EC1C040AE0000C3533 /* Info.plist */,
95 | 2A1E12D51D50A02B003BE506 /* banner4.jpg */,
96 | 2A1E12D31D509FE7003BE506 /* banner3.jpg */,
97 | 2A1E12D11D509EFD003BE506 /* banner1.jpg */,
98 | 3A8283B21C0412E1004E339F /* mainBottomBackground.png */,
99 | );
100 | path = SSCycleScrollDemo;
101 | sourceTree = "";
102 | };
103 | 4C3C012F0493197B02CC7D5F /* Pods */ = {
104 | isa = PBXGroup;
105 | children = (
106 | 909ADF16AB38B13CDB3FBA66 /* Pods-SSCycleScrollDemo.debug.xcconfig */,
107 | 58EADB8D3E967A9E86057369 /* Pods-SSCycleScrollDemo.release.xcconfig */,
108 | );
109 | name = Pods;
110 | sourceTree = "";
111 | };
112 | AA8870CFB7E82F741A09A95D /* Frameworks */ = {
113 | isa = PBXGroup;
114 | children = (
115 | 80542A005AE6ED6E9A26042F /* Pods.framework */,
116 | B7CFD120999F48A5DBB8C134 /* Pods_SSCycleScrollDemo.framework */,
117 | );
118 | name = Frameworks;
119 | sourceTree = "";
120 | };
121 | /* End PBXGroup section */
122 |
123 | /* Begin PBXNativeTarget section */
124 | 3A9D56DC1C040ADF000C3533 /* SSCycleScrollDemo */ = {
125 | isa = PBXNativeTarget;
126 | buildConfigurationList = 3A9D56EF1C040AE0000C3533 /* Build configuration list for PBXNativeTarget "SSCycleScrollDemo" */;
127 | buildPhases = (
128 | 8ECBFC54C4278E5F4E3D556D /* [CP] Check Pods Manifest.lock */,
129 | 3A9D56D91C040ADF000C3533 /* Sources */,
130 | 3A9D56DA1C040ADF000C3533 /* Frameworks */,
131 | 3A9D56DB1C040ADF000C3533 /* Resources */,
132 | 11491DCFBD67241F0F2F5BC7 /* [CP] Embed Pods Frameworks */,
133 | 2A1E12C51D508C47003BE506 /* Embed Frameworks */,
134 | );
135 | buildRules = (
136 | );
137 | dependencies = (
138 | );
139 | name = SSCycleScrollDemo;
140 | productName = SSCycleScrollDemo;
141 | productReference = 3A9D56DD1C040ADF000C3533 /* SSCycleScrollDemo.app */;
142 | productType = "com.apple.product-type.application";
143 | };
144 | /* End PBXNativeTarget section */
145 |
146 | /* Begin PBXProject section */
147 | 3A9D56D51C040ADF000C3533 /* Project object */ = {
148 | isa = PBXProject;
149 | attributes = {
150 | LastSwiftUpdateCheck = 0710;
151 | LastUpgradeCheck = 0710;
152 | ORGANIZATIONNAME = Shawn;
153 | TargetAttributes = {
154 | 3A9D56DC1C040ADF000C3533 = {
155 | CreatedOnToolsVersion = 7.1;
156 | DevelopmentTeam = A9VAJDN54X;
157 | LastSwiftMigration = 0810;
158 | };
159 | };
160 | };
161 | buildConfigurationList = 3A9D56D81C040ADF000C3533 /* Build configuration list for PBXProject "SSCycleScrollDemo" */;
162 | compatibilityVersion = "Xcode 3.2";
163 | developmentRegion = English;
164 | hasScannedForEncodings = 0;
165 | knownRegions = (
166 | en,
167 | Base,
168 | );
169 | mainGroup = 3A9D56D41C040ADF000C3533;
170 | productRefGroup = 3A9D56DE1C040ADF000C3533 /* Products */;
171 | projectDirPath = "";
172 | projectRoot = "";
173 | targets = (
174 | 3A9D56DC1C040ADF000C3533 /* SSCycleScrollDemo */,
175 | );
176 | };
177 | /* End PBXProject section */
178 |
179 | /* Begin PBXResourcesBuildPhase section */
180 | 3A9D56DB1C040ADF000C3533 /* Resources */ = {
181 | isa = PBXResourcesBuildPhase;
182 | buildActionMask = 2147483647;
183 | files = (
184 | 3A9D56EB1C040AE0000C3533 /* LaunchScreen.storyboard in Resources */,
185 | 2A1E12D41D509FE7003BE506 /* banner3.jpg in Resources */,
186 | 2A1E12D21D509EFD003BE506 /* banner1.jpg in Resources */,
187 | 3A9D56E81C040AE0000C3533 /* Assets.xcassets in Resources */,
188 | 2A1E12D61D50A02B003BE506 /* banner4.jpg in Resources */,
189 | 3A8283B31C0412E1004E339F /* mainBottomBackground.png in Resources */,
190 | 3A9D56E61C040AE0000C3533 /* Main.storyboard in Resources */,
191 | );
192 | runOnlyForDeploymentPostprocessing = 0;
193 | };
194 | /* End PBXResourcesBuildPhase section */
195 |
196 | /* Begin PBXShellScriptBuildPhase section */
197 | 11491DCFBD67241F0F2F5BC7 /* [CP] Embed Pods Frameworks */ = {
198 | isa = PBXShellScriptBuildPhase;
199 | buildActionMask = 2147483647;
200 | files = (
201 | );
202 | inputPaths = (
203 | "${SRCROOT}/Pods/Target Support Files/Pods-SSCycleScrollDemo/Pods-SSCycleScrollDemo-frameworks.sh",
204 | "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework",
205 | "${BUILT_PRODUCTS_DIR}/SSCycleScrollView/SSCycleScrollView.framework",
206 | );
207 | name = "[CP] Embed Pods Frameworks";
208 | outputPaths = (
209 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework",
210 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SSCycleScrollView.framework",
211 | );
212 | runOnlyForDeploymentPostprocessing = 0;
213 | shellPath = /bin/sh;
214 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SSCycleScrollDemo/Pods-SSCycleScrollDemo-frameworks.sh\"\n";
215 | showEnvVarsInLog = 0;
216 | };
217 | 8ECBFC54C4278E5F4E3D556D /* [CP] Check Pods Manifest.lock */ = {
218 | isa = PBXShellScriptBuildPhase;
219 | buildActionMask = 2147483647;
220 | files = (
221 | );
222 | inputPaths = (
223 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
224 | "${PODS_ROOT}/Manifest.lock",
225 | );
226 | name = "[CP] Check Pods Manifest.lock";
227 | outputPaths = (
228 | "$(DERIVED_FILE_DIR)/Pods-SSCycleScrollDemo-checkManifestLockResult.txt",
229 | );
230 | runOnlyForDeploymentPostprocessing = 0;
231 | shellPath = /bin/sh;
232 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
233 | showEnvVarsInLog = 0;
234 | };
235 | /* End PBXShellScriptBuildPhase section */
236 |
237 | /* Begin PBXSourcesBuildPhase section */
238 | 3A9D56D91C040ADF000C3533 /* Sources */ = {
239 | isa = PBXSourcesBuildPhase;
240 | buildActionMask = 2147483647;
241 | files = (
242 | 2AEFA1291DE6B57B0052F81C /* FirstViewController.swift in Sources */,
243 | 3A9D56E11C040ADF000C3533 /* AppDelegate.swift in Sources */,
244 | 3A9D56F91C040BB2000C3533 /* MainViewController.swift in Sources */,
245 | );
246 | runOnlyForDeploymentPostprocessing = 0;
247 | };
248 | /* End PBXSourcesBuildPhase section */
249 |
250 | /* Begin PBXVariantGroup section */
251 | 3A9D56E41C040AE0000C3533 /* Main.storyboard */ = {
252 | isa = PBXVariantGroup;
253 | children = (
254 | 3A9D56E51C040AE0000C3533 /* Base */,
255 | );
256 | name = Main.storyboard;
257 | sourceTree = "";
258 | };
259 | 3A9D56E91C040AE0000C3533 /* LaunchScreen.storyboard */ = {
260 | isa = PBXVariantGroup;
261 | children = (
262 | 3A9D56EA1C040AE0000C3533 /* Base */,
263 | );
264 | name = LaunchScreen.storyboard;
265 | sourceTree = "";
266 | };
267 | /* End PBXVariantGroup section */
268 |
269 | /* Begin XCBuildConfiguration section */
270 | 3A9D56ED1C040AE0000C3533 /* Debug */ = {
271 | isa = XCBuildConfiguration;
272 | buildSettings = {
273 | ALWAYS_SEARCH_USER_PATHS = NO;
274 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
275 | CLANG_CXX_LIBRARY = "libc++";
276 | CLANG_ENABLE_MODULES = YES;
277 | CLANG_ENABLE_OBJC_ARC = YES;
278 | CLANG_WARN_BOOL_CONVERSION = YES;
279 | CLANG_WARN_CONSTANT_CONVERSION = YES;
280 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
281 | CLANG_WARN_EMPTY_BODY = YES;
282 | CLANG_WARN_ENUM_CONVERSION = YES;
283 | CLANG_WARN_INT_CONVERSION = YES;
284 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
285 | CLANG_WARN_UNREACHABLE_CODE = YES;
286 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
287 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
288 | COPY_PHASE_STRIP = NO;
289 | DEBUG_INFORMATION_FORMAT = dwarf;
290 | ENABLE_STRICT_OBJC_MSGSEND = YES;
291 | ENABLE_TESTABILITY = YES;
292 | GCC_C_LANGUAGE_STANDARD = gnu99;
293 | GCC_DYNAMIC_NO_PIC = NO;
294 | GCC_NO_COMMON_BLOCKS = YES;
295 | GCC_OPTIMIZATION_LEVEL = 0;
296 | GCC_PREPROCESSOR_DEFINITIONS = (
297 | "DEBUG=1",
298 | "$(inherited)",
299 | );
300 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
301 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
302 | GCC_WARN_UNDECLARED_SELECTOR = YES;
303 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
304 | GCC_WARN_UNUSED_FUNCTION = YES;
305 | GCC_WARN_UNUSED_VARIABLE = YES;
306 | IPHONEOS_DEPLOYMENT_TARGET = 9.1;
307 | MTL_ENABLE_DEBUG_INFO = YES;
308 | ONLY_ACTIVE_ARCH = YES;
309 | SDKROOT = iphoneos;
310 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
311 | };
312 | name = Debug;
313 | };
314 | 3A9D56EE1C040AE0000C3533 /* Release */ = {
315 | isa = XCBuildConfiguration;
316 | buildSettings = {
317 | ALWAYS_SEARCH_USER_PATHS = NO;
318 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
319 | CLANG_CXX_LIBRARY = "libc++";
320 | CLANG_ENABLE_MODULES = YES;
321 | CLANG_ENABLE_OBJC_ARC = YES;
322 | CLANG_WARN_BOOL_CONVERSION = YES;
323 | CLANG_WARN_CONSTANT_CONVERSION = YES;
324 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
325 | CLANG_WARN_EMPTY_BODY = YES;
326 | CLANG_WARN_ENUM_CONVERSION = YES;
327 | CLANG_WARN_INT_CONVERSION = YES;
328 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
329 | CLANG_WARN_UNREACHABLE_CODE = YES;
330 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
331 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
332 | COPY_PHASE_STRIP = NO;
333 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
334 | ENABLE_NS_ASSERTIONS = NO;
335 | ENABLE_STRICT_OBJC_MSGSEND = YES;
336 | GCC_C_LANGUAGE_STANDARD = gnu99;
337 | GCC_NO_COMMON_BLOCKS = YES;
338 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
339 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
340 | GCC_WARN_UNDECLARED_SELECTOR = YES;
341 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
342 | GCC_WARN_UNUSED_FUNCTION = YES;
343 | GCC_WARN_UNUSED_VARIABLE = YES;
344 | IPHONEOS_DEPLOYMENT_TARGET = 9.1;
345 | MTL_ENABLE_DEBUG_INFO = NO;
346 | SDKROOT = iphoneos;
347 | VALIDATE_PRODUCT = YES;
348 | };
349 | name = Release;
350 | };
351 | 3A9D56F01C040AE0000C3533 /* Debug */ = {
352 | isa = XCBuildConfiguration;
353 | baseConfigurationReference = 909ADF16AB38B13CDB3FBA66 /* Pods-SSCycleScrollDemo.debug.xcconfig */;
354 | buildSettings = {
355 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
356 | CODE_SIGN_IDENTITY = "iPhone Developer";
357 | DEVELOPMENT_TEAM = A9VAJDN54X;
358 | ENABLE_BITCODE = NO;
359 | FRAMEWORK_SEARCH_PATHS = (
360 | "$(inherited)",
361 | "$(PROJECT_DIR)",
362 | );
363 | INFOPLIST_FILE = SSCycleScrollDemo/Info.plist;
364 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
365 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
366 | OTHER_LDFLAGS = "$(inherited)";
367 | PRODUCT_BUNDLE_IDENTIFIER = SH.SSCycleScrollDemo;
368 | PRODUCT_NAME = "$(TARGET_NAME)";
369 | SWIFT_VERSION = 4.0;
370 | };
371 | name = Debug;
372 | };
373 | 3A9D56F11C040AE0000C3533 /* Release */ = {
374 | isa = XCBuildConfiguration;
375 | baseConfigurationReference = 58EADB8D3E967A9E86057369 /* Pods-SSCycleScrollDemo.release.xcconfig */;
376 | buildSettings = {
377 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
378 | CODE_SIGN_IDENTITY = "iPhone Developer";
379 | DEVELOPMENT_TEAM = A9VAJDN54X;
380 | ENABLE_BITCODE = NO;
381 | FRAMEWORK_SEARCH_PATHS = (
382 | "$(inherited)",
383 | "$(PROJECT_DIR)",
384 | );
385 | INFOPLIST_FILE = SSCycleScrollDemo/Info.plist;
386 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
387 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
388 | OTHER_LDFLAGS = "$(inherited)";
389 | PRODUCT_BUNDLE_IDENTIFIER = SH.SSCycleScrollDemo;
390 | PRODUCT_NAME = "$(TARGET_NAME)";
391 | SWIFT_VERSION = 4.0;
392 | };
393 | name = Release;
394 | };
395 | /* End XCBuildConfiguration section */
396 |
397 | /* Begin XCConfigurationList section */
398 | 3A9D56D81C040ADF000C3533 /* Build configuration list for PBXProject "SSCycleScrollDemo" */ = {
399 | isa = XCConfigurationList;
400 | buildConfigurations = (
401 | 3A9D56ED1C040AE0000C3533 /* Debug */,
402 | 3A9D56EE1C040AE0000C3533 /* Release */,
403 | );
404 | defaultConfigurationIsVisible = 0;
405 | defaultConfigurationName = Release;
406 | };
407 | 3A9D56EF1C040AE0000C3533 /* Build configuration list for PBXNativeTarget "SSCycleScrollDemo" */ = {
408 | isa = XCConfigurationList;
409 | buildConfigurations = (
410 | 3A9D56F01C040AE0000C3533 /* Debug */,
411 | 3A9D56F11C040AE0000C3533 /* Release */,
412 | );
413 | defaultConfigurationIsVisible = 0;
414 | defaultConfigurationName = Release;
415 | };
416 | /* End XCConfigurationList section */
417 | };
418 | rootObject = 3A9D56D51C040ADF000C3533 /* Project object */;
419 | }
420 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo.xcodeproj/project.xcworkspace/xcshareddata/SSCycleScrollDemo.xcscmblueprint:
--------------------------------------------------------------------------------
1 | {
2 | "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "DDED2DC375DE9B83521A13B9ACE66B7A29143B2C",
3 | "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : {
4 |
5 | },
6 | "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : {
7 | "EBCE5C9FA1F4681FCF67B24B425A2052E8CCD811" : 0,
8 | "DDED2DC375DE9B83521A13B9ACE66B7A29143B2C" : 0
9 | },
10 | "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "FCA69CAE-04D0-4F34-A320-7B8416B10483",
11 | "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : {
12 | "EBCE5C9FA1F4681FCF67B24B425A2052E8CCD811" : "",
13 | "DDED2DC375DE9B83521A13B9ACE66B7A29143B2C" : "SSCycleScrollView\/"
14 | },
15 | "DVTSourceControlWorkspaceBlueprintNameKey" : "SSCycleScrollDemo",
16 | "DVTSourceControlWorkspaceBlueprintVersion" : 204,
17 | "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "SSCycleScrollDemo\/SSCycleScrollDemo.xcodeproj",
18 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [
19 | {
20 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/dulingkang\/SSCycleScrollView.git",
21 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
22 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "DDED2DC375DE9B83521A13B9ACE66B7A29143B2C"
23 | },
24 | {
25 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/dulingkang\/shawndu.git",
26 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
27 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "EBCE5C9FA1F4681FCF67B24B425A2052E8CCD811"
28 | }
29 | ]
30 | }
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // SSCycleScrollDemo
4 | //
5 | // Created by ShawnDu on 15/11/24.
6 | // Copyright © 2015年 Shawn. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 |
14 | var window: UIWindow?
15 |
16 |
17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
18 | // Override point for customization after application launch.
19 | return true
20 | }
21 |
22 | func applicationWillResignActive(_ application: UIApplication) {
23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
25 | }
26 |
27 | func applicationDidEnterBackground(_ application: UIApplication) {
28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
30 | }
31 |
32 | func applicationWillEnterForeground(_ application: UIApplication) {
33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
34 | }
35 |
36 | func applicationDidBecomeActive(_ application: UIApplication) {
37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
38 | }
39 |
40 | func applicationWillTerminate(_ application: UIApplication) {
41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
42 | }
43 |
44 |
45 | }
46 |
47 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/FirstViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // FirstViewController.swift
3 | // SSCycleScrollDemo
4 | //
5 | // Created by ShawnDu on 2016/11/24.
6 | // Copyright © 2016年 Shawn. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class FirstViewController: UIViewController {
12 |
13 | override func viewDidLoad() {
14 | super.viewDidLoad()
15 | self.view.backgroundColor = UIColor.red
16 | navigationController?.setNavigationBarHidden(false, animated: true)
17 | self.title = "FirstViewController"
18 | }
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 2.1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 2.1.0.01
23 | LSRequiresIPhoneOS
24 |
25 | NSAppTransportSecurity
26 |
27 | NSAllowsArbitraryLoads
28 |
29 |
30 | UILaunchStoryboardName
31 | LaunchScreen
32 | UIMainStoryboardFile
33 | Main
34 | UIRequiredDeviceCapabilities
35 |
36 | armv7
37 |
38 | UISupportedInterfaceOrientations
39 |
40 | UIInterfaceOrientationPortrait
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/MainViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // MainViewController.swift
3 | // CycleScroll
4 | //
5 | // Created by dulingkang on 20/11/15.
6 | // Copyright © 2015 shawn. All rights reserved.
7 | //
8 |
9 | import UIKit
10 | import SSCycleScrollView
11 |
12 | let kScreenWidth = UIScreen.main.bounds.width
13 | let kScreenHeight = UIScreen.main.bounds.height
14 | let kScrollRect = CGRect(x: 0, y: 0, width: kScreenWidth, height: kScreenHeight*0.8)
15 | let kIphone4sScrollRect = CGRect(x: 0, y: 0, width: kScreenWidth, height: kScreenHeight*0.94)
16 |
17 | class MainViewController: UIViewController {
18 |
19 | var scrollImageUrls: [[String]] {
20 | get {
21 | return [["https://devthinking.com/images/wechatqcode.jpg", "banner4.jpg"],
22 | ["banner1.jpg"],
23 | ["banner3.jpg"]]
24 | }
25 | }
26 | var mainScrollView: SSCycleScrollView?
27 |
28 | //MARK: - life cycle
29 | override func viewDidLoad() {
30 | super.viewDidLoad()
31 | self.view.backgroundColor = UIColor.blue
32 | self.addMainScrollView()
33 | self.addBottomView()
34 | }
35 |
36 | override func viewWillAppear(_ animated: Bool) {
37 | navigationController?.setNavigationBarHidden(true, animated: true)
38 | }
39 |
40 | //MARK: - private method
41 | func addMainScrollView() {
42 | var currentRect = kScrollRect
43 | if kScreenHeight == 480 {
44 | currentRect = kIphone4sScrollRect
45 | }
46 | self.mainScrollView = SSCycleScrollView.init(frame: currentRect, animationDuration: 3, inputImageUrls: self.scrollImageUrls)
47 | self.mainScrollView?.tapBlock = {index in
48 | print("tapped page\(index)")
49 | }
50 | // self.mainScrollView?.autoScroll = false
51 | self.view.addSubview(self.mainScrollView!)
52 | }
53 |
54 | func addBottomView() {
55 | let imageView = UIImageView(frame: CGRect(x: 0, y: kScreenHeight/2, width: kScreenWidth, height: kScreenHeight/2))
56 | imageView.image = UIImage(named: "mainBottomBackground")
57 | imageView.contentMode = .scaleAspectFill
58 | imageView.isUserInteractionEnabled = true
59 | let tap = UITapGestureRecognizer(target: self, action: #selector(MainViewController.imageViewTapped))
60 | imageView.addGestureRecognizer(tap)
61 | self.view.addSubview(imageView)
62 | }
63 |
64 | @objc func imageViewTapped() {
65 | navigationController?.pushViewController(FirstViewController(), animated: true)
66 | }
67 | }
68 |
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/banner1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/a0db68496840e5010fa4b0d84b3dd84c9482737d/SSCycleScrollDemo/SSCycleScrollDemo/banner1.jpg
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/banner3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/a0db68496840e5010fa4b0d84b3dd84c9482737d/SSCycleScrollDemo/SSCycleScrollDemo/banner3.jpg
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/banner4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/a0db68496840e5010fa4b0d84b3dd84c9482737d/SSCycleScrollDemo/SSCycleScrollDemo/banner4.jpg
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/mainBottomBackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/a0db68496840e5010fa4b0d84b3dd84c9482737d/SSCycleScrollDemo/SSCycleScrollDemo/mainBottomBackground.png
--------------------------------------------------------------------------------
/SSCycleScrollDemo/SSCycleScrollDemo/sscycle.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dulingkang/SSCycleScrollView/a0db68496840e5010fa4b0d84b3dd84c9482737d/SSCycleScrollDemo/SSCycleScrollDemo/sscycle.gif
--------------------------------------------------------------------------------
/SSCycleScrollView/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2018 dulingkang@163.com
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy
4 | of this software and associated documentation files (the "Software"), to deal
5 | in the Software without restriction, including without limitation the rights
6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 | copies of the Software, and to permit persons to whom the Software is
8 | furnished to do so, subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in
11 | all copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 | THE SOFTWARE.
20 |
--------------------------------------------------------------------------------
/SSCycleScrollView/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '9.0'
3 |
4 | target 'SSCycleScrollView' do
5 | use_frameworks!
6 | pod 'SDWebImage'
7 | pod 'SDWebImage/WebP'
8 |
9 | # Pods for SSCycleScrollView
10 |
11 | end
12 |
--------------------------------------------------------------------------------
/SSCycleScrollView/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - libwebp (0.5.0):
3 | - libwebp/core (= 0.5.0)
4 | - libwebp/dec (= 0.5.0)
5 | - libwebp/demux (= 0.5.0)
6 | - libwebp/dsp (= 0.5.0)
7 | - libwebp/enc (= 0.5.0)
8 | - libwebp/mux (= 0.5.0)
9 | - libwebp/utils (= 0.5.0)
10 | - libwebp/webp (= 0.5.0)
11 | - libwebp/core (0.5.0):
12 | - libwebp/webp
13 | - libwebp/dec (0.5.0):
14 | - libwebp/core
15 | - libwebp/demux (0.5.0):
16 | - libwebp/core
17 | - libwebp/dsp (0.5.0):
18 | - libwebp/core
19 | - libwebp/enc (0.5.0):
20 | - libwebp/core
21 | - libwebp/mux (0.5.0):
22 | - libwebp/core
23 | - libwebp/utils (0.5.0):
24 | - libwebp/core
25 | - libwebp/webp (0.5.0)
26 | - SDWebImage (3.8.1):
27 | - SDWebImage/Core (= 3.8.1)
28 | - SDWebImage/Core (3.8.1)
29 | - SDWebImage/WebP (3.8.1):
30 | - libwebp
31 | - SDWebImage/Core
32 |
33 | DEPENDENCIES:
34 | - SDWebImage
35 | - SDWebImage/WebP
36 |
37 | SPEC CHECKSUMS:
38 | libwebp: 68ba2001ba6806ee52837ebd77a551a0b6567e4e
39 | SDWebImage: 35f9627a3e44b4f292a8a8ce6a531fa488239b91
40 |
41 | PODFILE CHECKSUM: 8924fbe08aaec77b65cced4b2e9b8dc188a8ef7a
42 |
43 | COCOAPODS: 1.0.1
44 |
--------------------------------------------------------------------------------
/SSCycleScrollView/SSCycleScrollView.podspec:
--------------------------------------------------------------------------------
1 | Pod::Spec.new do |spec|
2 | spec.name = 'SSCycleScrollView'
3 | spec.version = '2.1.1'
4 | spec.summary = 'infinate scroll home page using swift4,无限轮播图'
5 | spec.homepage = 'https://github.com/dulingkang/SSCycleScrollView'
6 | spec.license = { type: 'MIT', file: 'LICENSE' }
7 | spec.authors = { 'Shawn Du' => 'dulingkang@163.com' }
8 | spec.swift_version = '4.1'
9 | spec.description = <<-DESC
10 | infinate scroll, home page using swift4, 无限轮播图
11 | DESC
12 |
13 | spec.ios.deployment_target = '8.0'
14 | spec.source = { :git => 'https://github.com/dulingkang/SSCycleScrollView.git', :tag => spec.version.to_s }
15 | spec.source_files = 'SSCycleScrollView/**/*.swift'
16 | spec.dependency 'SDWebImage'
17 | end
18 |
--------------------------------------------------------------------------------
/SSCycleScrollView/SSCycleScrollView.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 2A1E12D81D50A3F4003BE506 /* SSCycleScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A1E12D71D50A3F4003BE506 /* SSCycleScrollView.swift */; };
11 | 3A2482491C5A0DFF00F27695 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3A2482461C5A0DFF00F27695 /* Info.plist */; };
12 | 3A5B2E4F1C58E3BB006D82FC /* SSCycleScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5B2E4E1C58E3BB006D82FC /* SSCycleScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; };
13 | B09CE8A64E0A0DD03D951848 /* Pods_SSCycleScrollView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF863CD42A3114E77D362798 /* Pods_SSCycleScrollView.framework */; };
14 | /* End PBXBuildFile section */
15 |
16 | /* Begin PBXFileReference section */
17 | 2A062B6B26D808CE3A0CB943 /* Pods-SSCycleScrollView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCycleScrollView.release.xcconfig"; path = "Pods/Target Support Files/Pods-SSCycleScrollView/Pods-SSCycleScrollView.release.xcconfig"; sourceTree = ""; };
18 | 2A1E12D71D50A3F4003BE506 /* SSCycleScrollView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SSCycleScrollView.swift; sourceTree = ""; };
19 | 3A2482461C5A0DFF00F27695 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
20 | 3A5B2E4B1C58E3BB006D82FC /* SSCycleScrollView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SSCycleScrollView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
21 | 3A5B2E4E1C58E3BB006D82FC /* SSCycleScrollView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SSCycleScrollView.h; sourceTree = ""; };
22 | AA4D05910D3A36BFC2C2A54A /* Pods-SSCycleScrollView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCycleScrollView.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SSCycleScrollView/Pods-SSCycleScrollView.debug.xcconfig"; sourceTree = ""; };
23 | BF863CD42A3114E77D362798 /* Pods_SSCycleScrollView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SSCycleScrollView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
24 | /* End PBXFileReference section */
25 |
26 | /* Begin PBXFrameworksBuildPhase section */
27 | 3A5B2E471C58E3BB006D82FC /* Frameworks */ = {
28 | isa = PBXFrameworksBuildPhase;
29 | buildActionMask = 2147483647;
30 | files = (
31 | B09CE8A64E0A0DD03D951848 /* Pods_SSCycleScrollView.framework in Frameworks */,
32 | );
33 | runOnlyForDeploymentPostprocessing = 0;
34 | };
35 | /* End PBXFrameworksBuildPhase section */
36 |
37 | /* Begin PBXGroup section */
38 | 3A2482421C5A0D7000F27695 /* Resource */ = {
39 | isa = PBXGroup;
40 | children = (
41 | 3A2482461C5A0DFF00F27695 /* Info.plist */,
42 | );
43 | name = Resource;
44 | sourceTree = "";
45 | };
46 | 3A2482431C5A0D7A00F27695 /* Classes */ = {
47 | isa = PBXGroup;
48 | children = (
49 | 2A1E12D71D50A3F4003BE506 /* SSCycleScrollView.swift */,
50 | 3A5B2E4E1C58E3BB006D82FC /* SSCycleScrollView.h */,
51 | );
52 | name = Classes;
53 | sourceTree = "";
54 | };
55 | 3A5B2E411C58E3BB006D82FC = {
56 | isa = PBXGroup;
57 | children = (
58 | 3A5B2E4D1C58E3BB006D82FC /* SSCycleScrollView */,
59 | 3A5B2E4C1C58E3BB006D82FC /* Products */,
60 | 5591F37F42B48E9B0466C6D5 /* Pods */,
61 | 72F41F6405EA6D995C1DCC86 /* Frameworks */,
62 | );
63 | sourceTree = "";
64 | };
65 | 3A5B2E4C1C58E3BB006D82FC /* Products */ = {
66 | isa = PBXGroup;
67 | children = (
68 | 3A5B2E4B1C58E3BB006D82FC /* SSCycleScrollView.framework */,
69 | );
70 | name = Products;
71 | sourceTree = "";
72 | };
73 | 3A5B2E4D1C58E3BB006D82FC /* SSCycleScrollView */ = {
74 | isa = PBXGroup;
75 | children = (
76 | 3A2482431C5A0D7A00F27695 /* Classes */,
77 | 3A2482421C5A0D7000F27695 /* Resource */,
78 | );
79 | path = SSCycleScrollView;
80 | sourceTree = "";
81 | };
82 | 5591F37F42B48E9B0466C6D5 /* Pods */ = {
83 | isa = PBXGroup;
84 | children = (
85 | AA4D05910D3A36BFC2C2A54A /* Pods-SSCycleScrollView.debug.xcconfig */,
86 | 2A062B6B26D808CE3A0CB943 /* Pods-SSCycleScrollView.release.xcconfig */,
87 | );
88 | name = Pods;
89 | sourceTree = "";
90 | };
91 | 72F41F6405EA6D995C1DCC86 /* Frameworks */ = {
92 | isa = PBXGroup;
93 | children = (
94 | BF863CD42A3114E77D362798 /* Pods_SSCycleScrollView.framework */,
95 | );
96 | name = Frameworks;
97 | sourceTree = "";
98 | };
99 | /* End PBXGroup section */
100 |
101 | /* Begin PBXHeadersBuildPhase section */
102 | 3A5B2E481C58E3BB006D82FC /* Headers */ = {
103 | isa = PBXHeadersBuildPhase;
104 | buildActionMask = 2147483647;
105 | files = (
106 | 3A5B2E4F1C58E3BB006D82FC /* SSCycleScrollView.h in Headers */,
107 | );
108 | runOnlyForDeploymentPostprocessing = 0;
109 | };
110 | /* End PBXHeadersBuildPhase section */
111 |
112 | /* Begin PBXNativeTarget section */
113 | 3A5B2E4A1C58E3BB006D82FC /* SSCycleScrollView */ = {
114 | isa = PBXNativeTarget;
115 | buildConfigurationList = 3A5B2E5F1C58E3BB006D82FC /* Build configuration list for PBXNativeTarget "SSCycleScrollView" */;
116 | buildPhases = (
117 | F114AA2FCE2B0D1BFB10ABFB /* [CP] Check Pods Manifest.lock */,
118 | 3A5B2E461C58E3BB006D82FC /* Sources */,
119 | 3A5B2E471C58E3BB006D82FC /* Frameworks */,
120 | 3A5B2E481C58E3BB006D82FC /* Headers */,
121 | 3A5B2E491C58E3BB006D82FC /* Resources */,
122 | A29F5C5BBF10D3FA2A3313B4 /* [CP] Copy Pods Resources */,
123 | );
124 | buildRules = (
125 | );
126 | dependencies = (
127 | );
128 | name = SSCycleScrollView;
129 | productName = SSCycleScrollView;
130 | productReference = 3A5B2E4B1C58E3BB006D82FC /* SSCycleScrollView.framework */;
131 | productType = "com.apple.product-type.framework";
132 | };
133 | /* End PBXNativeTarget section */
134 |
135 | /* Begin PBXProject section */
136 | 3A5B2E421C58E3BB006D82FC /* Project object */ = {
137 | isa = PBXProject;
138 | attributes = {
139 | LastSwiftUpdateCheck = 0730;
140 | LastUpgradeCheck = 0720;
141 | ORGANIZATIONNAME = Shawn;
142 | TargetAttributes = {
143 | 3A5B2E4A1C58E3BB006D82FC = {
144 | CreatedOnToolsVersion = 7.2;
145 | LastSwiftMigration = 0810;
146 | };
147 | };
148 | };
149 | buildConfigurationList = 3A5B2E451C58E3BB006D82FC /* Build configuration list for PBXProject "SSCycleScrollView" */;
150 | compatibilityVersion = "Xcode 3.2";
151 | developmentRegion = English;
152 | hasScannedForEncodings = 0;
153 | knownRegions = (
154 | en,
155 | );
156 | mainGroup = 3A5B2E411C58E3BB006D82FC;
157 | productRefGroup = 3A5B2E4C1C58E3BB006D82FC /* Products */;
158 | projectDirPath = "";
159 | projectRoot = "";
160 | targets = (
161 | 3A5B2E4A1C58E3BB006D82FC /* SSCycleScrollView */,
162 | );
163 | };
164 | /* End PBXProject section */
165 |
166 | /* Begin PBXResourcesBuildPhase section */
167 | 3A5B2E491C58E3BB006D82FC /* Resources */ = {
168 | isa = PBXResourcesBuildPhase;
169 | buildActionMask = 2147483647;
170 | files = (
171 | 3A2482491C5A0DFF00F27695 /* Info.plist in Resources */,
172 | );
173 | runOnlyForDeploymentPostprocessing = 0;
174 | };
175 | /* End PBXResourcesBuildPhase section */
176 |
177 | /* Begin PBXShellScriptBuildPhase section */
178 | A29F5C5BBF10D3FA2A3313B4 /* [CP] Copy Pods Resources */ = {
179 | isa = PBXShellScriptBuildPhase;
180 | buildActionMask = 2147483647;
181 | files = (
182 | );
183 | inputPaths = (
184 | );
185 | name = "[CP] Copy Pods Resources";
186 | outputPaths = (
187 | );
188 | runOnlyForDeploymentPostprocessing = 0;
189 | shellPath = /bin/sh;
190 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SSCycleScrollView/Pods-SSCycleScrollView-resources.sh\"\n";
191 | showEnvVarsInLog = 0;
192 | };
193 | F114AA2FCE2B0D1BFB10ABFB /* [CP] Check Pods Manifest.lock */ = {
194 | isa = PBXShellScriptBuildPhase;
195 | buildActionMask = 2147483647;
196 | files = (
197 | );
198 | inputPaths = (
199 | );
200 | name = "[CP] Check Pods Manifest.lock";
201 | outputPaths = (
202 | );
203 | runOnlyForDeploymentPostprocessing = 0;
204 | shellPath = /bin/sh;
205 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
206 | showEnvVarsInLog = 0;
207 | };
208 | /* End PBXShellScriptBuildPhase section */
209 |
210 | /* Begin PBXSourcesBuildPhase section */
211 | 3A5B2E461C58E3BB006D82FC /* Sources */ = {
212 | isa = PBXSourcesBuildPhase;
213 | buildActionMask = 2147483647;
214 | files = (
215 | 2A1E12D81D50A3F4003BE506 /* SSCycleScrollView.swift in Sources */,
216 | );
217 | runOnlyForDeploymentPostprocessing = 0;
218 | };
219 | /* End PBXSourcesBuildPhase section */
220 |
221 | /* Begin XCBuildConfiguration section */
222 | 3A5B2E5D1C58E3BB006D82FC /* Debug */ = {
223 | isa = XCBuildConfiguration;
224 | buildSettings = {
225 | ALWAYS_SEARCH_USER_PATHS = NO;
226 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
227 | CLANG_CXX_LIBRARY = "libc++";
228 | CLANG_ENABLE_MODULES = YES;
229 | CLANG_ENABLE_OBJC_ARC = YES;
230 | CLANG_WARN_BOOL_CONVERSION = YES;
231 | CLANG_WARN_CONSTANT_CONVERSION = YES;
232 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
233 | CLANG_WARN_EMPTY_BODY = YES;
234 | CLANG_WARN_ENUM_CONVERSION = YES;
235 | CLANG_WARN_INT_CONVERSION = YES;
236 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
237 | CLANG_WARN_UNREACHABLE_CODE = YES;
238 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
239 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
240 | COPY_PHASE_STRIP = NO;
241 | CURRENT_PROJECT_VERSION = 1;
242 | DEBUG_INFORMATION_FORMAT = dwarf;
243 | ENABLE_STRICT_OBJC_MSGSEND = YES;
244 | ENABLE_TESTABILITY = YES;
245 | GCC_C_LANGUAGE_STANDARD = gnu99;
246 | GCC_DYNAMIC_NO_PIC = NO;
247 | GCC_NO_COMMON_BLOCKS = YES;
248 | GCC_OPTIMIZATION_LEVEL = 0;
249 | GCC_PREPROCESSOR_DEFINITIONS = (
250 | "DEBUG=1",
251 | "$(inherited)",
252 | );
253 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
254 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
255 | GCC_WARN_UNDECLARED_SELECTOR = YES;
256 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
257 | GCC_WARN_UNUSED_FUNCTION = YES;
258 | GCC_WARN_UNUSED_VARIABLE = YES;
259 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
260 | MTL_ENABLE_DEBUG_INFO = YES;
261 | ONLY_ACTIVE_ARCH = YES;
262 | SDKROOT = iphoneos;
263 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
264 | TARGETED_DEVICE_FAMILY = "1,2";
265 | VERSIONING_SYSTEM = "apple-generic";
266 | VERSION_INFO_PREFIX = "";
267 | };
268 | name = Debug;
269 | };
270 | 3A5B2E5E1C58E3BB006D82FC /* Release */ = {
271 | isa = XCBuildConfiguration;
272 | buildSettings = {
273 | ALWAYS_SEARCH_USER_PATHS = NO;
274 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
275 | CLANG_CXX_LIBRARY = "libc++";
276 | CLANG_ENABLE_MODULES = YES;
277 | CLANG_ENABLE_OBJC_ARC = YES;
278 | CLANG_WARN_BOOL_CONVERSION = YES;
279 | CLANG_WARN_CONSTANT_CONVERSION = YES;
280 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
281 | CLANG_WARN_EMPTY_BODY = YES;
282 | CLANG_WARN_ENUM_CONVERSION = YES;
283 | CLANG_WARN_INT_CONVERSION = YES;
284 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
285 | CLANG_WARN_UNREACHABLE_CODE = YES;
286 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
287 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
288 | COPY_PHASE_STRIP = NO;
289 | CURRENT_PROJECT_VERSION = 1;
290 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
291 | ENABLE_NS_ASSERTIONS = NO;
292 | ENABLE_STRICT_OBJC_MSGSEND = YES;
293 | GCC_C_LANGUAGE_STANDARD = gnu99;
294 | GCC_NO_COMMON_BLOCKS = YES;
295 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
296 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
297 | GCC_WARN_UNDECLARED_SELECTOR = YES;
298 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
299 | GCC_WARN_UNUSED_FUNCTION = YES;
300 | GCC_WARN_UNUSED_VARIABLE = YES;
301 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
302 | MTL_ENABLE_DEBUG_INFO = NO;
303 | SDKROOT = iphoneos;
304 | TARGETED_DEVICE_FAMILY = "1,2";
305 | VALIDATE_PRODUCT = YES;
306 | VERSIONING_SYSTEM = "apple-generic";
307 | VERSION_INFO_PREFIX = "";
308 | };
309 | name = Release;
310 | };
311 | 3A5B2E601C58E3BB006D82FC /* Debug */ = {
312 | isa = XCBuildConfiguration;
313 | baseConfigurationReference = AA4D05910D3A36BFC2C2A54A /* Pods-SSCycleScrollView.debug.xcconfig */;
314 | buildSettings = {
315 | CLANG_ENABLE_MODULES = YES;
316 | DEFINES_MODULE = YES;
317 | DYLIB_COMPATIBILITY_VERSION = 1;
318 | DYLIB_CURRENT_VERSION = 1;
319 | DYLIB_INSTALL_NAME_BASE = "@rpath";
320 | INFOPLIST_FILE = SSCycleScrollView/Info.plist;
321 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
322 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
323 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
324 | PRODUCT_BUNDLE_IDENTIFIER = SH.SSCycleScrollView;
325 | PRODUCT_NAME = "$(TARGET_NAME)";
326 | SKIP_INSTALL = YES;
327 | SWIFT_INSTALL_OBJC_HEADER = YES;
328 | SWIFT_OBJC_BRIDGING_HEADER = "";
329 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
330 | SWIFT_VERSION = 3.0;
331 | };
332 | name = Debug;
333 | };
334 | 3A5B2E611C58E3BB006D82FC /* Release */ = {
335 | isa = XCBuildConfiguration;
336 | baseConfigurationReference = 2A062B6B26D808CE3A0CB943 /* Pods-SSCycleScrollView.release.xcconfig */;
337 | buildSettings = {
338 | CLANG_ENABLE_MODULES = YES;
339 | DEFINES_MODULE = YES;
340 | DYLIB_COMPATIBILITY_VERSION = 1;
341 | DYLIB_CURRENT_VERSION = 1;
342 | DYLIB_INSTALL_NAME_BASE = "@rpath";
343 | INFOPLIST_FILE = SSCycleScrollView/Info.plist;
344 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
345 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
346 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
347 | PRODUCT_BUNDLE_IDENTIFIER = SH.SSCycleScrollView;
348 | PRODUCT_NAME = "$(TARGET_NAME)";
349 | SKIP_INSTALL = YES;
350 | SWIFT_INSTALL_OBJC_HEADER = YES;
351 | SWIFT_OBJC_BRIDGING_HEADER = "";
352 | SWIFT_VERSION = 3.0;
353 | };
354 | name = Release;
355 | };
356 | /* End XCBuildConfiguration section */
357 |
358 | /* Begin XCConfigurationList section */
359 | 3A5B2E451C58E3BB006D82FC /* Build configuration list for PBXProject "SSCycleScrollView" */ = {
360 | isa = XCConfigurationList;
361 | buildConfigurations = (
362 | 3A5B2E5D1C58E3BB006D82FC /* Debug */,
363 | 3A5B2E5E1C58E3BB006D82FC /* Release */,
364 | );
365 | defaultConfigurationIsVisible = 0;
366 | defaultConfigurationName = Release;
367 | };
368 | 3A5B2E5F1C58E3BB006D82FC /* Build configuration list for PBXNativeTarget "SSCycleScrollView" */ = {
369 | isa = XCConfigurationList;
370 | buildConfigurations = (
371 | 3A5B2E601C58E3BB006D82FC /* Debug */,
372 | 3A5B2E611C58E3BB006D82FC /* Release */,
373 | );
374 | defaultConfigurationIsVisible = 0;
375 | defaultConfigurationName = Release;
376 | };
377 | /* End XCConfigurationList section */
378 | };
379 | rootObject = 3A5B2E421C58E3BB006D82FC /* Project object */;
380 | }
381 |
--------------------------------------------------------------------------------
/SSCycleScrollView/SSCycleScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/SSCycleScrollView/SSCycleScrollView.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/SSCycleScrollView/SSCycleScrollView/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 2.1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 2.1.0.01
23 | NSHumanReadableCopyright
24 | Copyright © 2016年 Shawn. All rights reserved.
25 | NSPrincipalClass
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/SSCycleScrollView/SSCycleScrollView/SSCycleScrollView.h:
--------------------------------------------------------------------------------
1 | //
2 | // SSCycleScrollView.h
3 | // SSCycleScrollView
4 | //
5 | // Created by dulingkang on 16/1/27.
6 | // Copyright © 2016年 Shawn. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | //! Project version number for SSCycleScrollView.
12 | FOUNDATION_EXPORT double SSCycleScrollViewVersionNumber;
13 |
14 | //! Project version string for SSCycleScrollView.
15 | FOUNDATION_EXPORT const unsigned char SSCycleScrollViewVersionString[];
16 |
17 | // In this header, you should import all the public headers of your framework using statements like #import
18 |
19 |
20 |
--------------------------------------------------------------------------------
/SSCycleScrollView/SSCycleScrollView/SSCycleScrollView.swift:
--------------------------------------------------------------------------------
1 | //
2 | // SSCycleScrollView.swift
3 | // CycleScroll
4 | //
5 | // Created by dulingkang on 20/11/15.
6 | // Copyright © 2015 shawn. All rights reserved.
7 | //
8 |
9 | import UIKit
10 | import SDWebImage
11 |
12 | public typealias tapActionBlock = (Int) -> ()
13 |
14 | public class SSCycleScrollView: UIScrollView {
15 | var currentArrayIndex: Int!
16 | var animationDuration: TimeInterval!
17 | var animationTimer: Timer?
18 | var currentDisplayView: UIImageView?
19 | var lastDisplayView: UIImageView?
20 | var previousDisplayView: UIImageView?
21 | open var allImageUrls: [[String]] = [[]]
22 | open var autoScroll = true {
23 | didSet {
24 | if !autoScroll {
25 | cancelTimer()
26 | }
27 | }
28 | }
29 | public var tapBlock: tapActionBlock?
30 | let kScreenWidth = UIScreen.main.bounds.size.width
31 | let kScreenHeight = UIScreen.main.bounds.size.height
32 | var needScroll = true
33 |
34 | //MARK: - init method
35 | public init(frame: CGRect, animationDuration: TimeInterval, inputImageUrls: [[String]]) {
36 | super.init(frame: frame)
37 | self.animationDuration = animationDuration
38 | self.currentArrayIndex = 1
39 | if inputImageUrls.count < 1 {
40 | print("inputImageUrls can not be nil!")
41 | return
42 | }
43 | if inputImageUrls.count == 1 {
44 | needScroll = false
45 | self.currentArrayIndex = 0
46 | }
47 | allImageUrls = inputImageUrls
48 | self.configScrollView(frame)
49 | }
50 |
51 | required public init(coder: NSCoder) {
52 | super.init(coder: coder)!
53 | }
54 |
55 | //MARK: - event response
56 | @objc func timerFired() {
57 | let xOffset = Int(self.contentOffset.x/kScreenWidth)
58 | let xOffsetFloat = CGFloat(xOffset) * kScreenWidth
59 | let newOffset = CGPoint(x: xOffsetFloat + self.frame.width, y: self.contentOffset.y)
60 | self.setContentOffset(newOffset, animated: true)
61 | }
62 |
63 | @objc func tapAction(_ tap: UITapGestureRecognizer) {
64 | self.tapBlock?(self.currentArrayIndex)
65 | }
66 |
67 | //MARK: - public method
68 | func createScrollTimer() {
69 | self.animationTimer?.invalidate()
70 | self.animationTimer = Timer.scheduledTimer(timeInterval: self.animationDuration, target: self, selector: #selector(SSCycleScrollView.timerFired), userInfo: nil, repeats: true)
71 | }
72 | }
73 |
74 | //MARK: - Scrollview delegate
75 | extension SSCycleScrollView: UIScrollViewDelegate {
76 | open func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
77 | if autoScroll {
78 | self.animationTimer?.fireDate = Date.distantFuture
79 | }
80 | }
81 |
82 | open func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
83 | if autoScroll {
84 | self.createScrollTimer()
85 | }
86 | }
87 |
88 | open func scrollViewDidScroll(_ scrollView: UIScrollView) {
89 | if self.contentOffset.x >= (2 * self.frame.width){
90 | self.currentArrayIndex = self.getArrayIndex(self.currentArrayIndex + 1)
91 | self.configDisplayViews()
92 | } else if self.contentOffset.x <= 0 {
93 | self.currentArrayIndex = self.getArrayIndex(self.currentArrayIndex - 1)
94 | self.configDisplayViews()
95 | }
96 | }
97 | }
98 |
99 | //MARK: - private method
100 | fileprivate extension SSCycleScrollView {
101 | func configScrollView(_ frame: CGRect) {
102 | self.autoresizesSubviews = true
103 | self.contentMode = UIViewContentMode.center
104 | self.contentSize = CGSize(width: 3 * frame.width, height: frame.height)
105 | self.autoresizingMask = UIViewAutoresizing.flexibleWidth
106 | self.delegate = self
107 | self.isPagingEnabled = true
108 |
109 | self.currentDisplayView = UIImageView.init(frame: CGRect(x: frame.width, y: frame.origin.y, width: frame.width, height: frame.height))
110 | self.previousDisplayView = UIImageView.init(frame: CGRect(x: 0, y: frame.origin.y, width: frame.width, height: frame.height))
111 | self.lastDisplayView = UIImageView.init(frame: CGRect(x: 2 * frame.width, y: frame.origin.y, width: frame.width, height: frame.height))
112 | self.currentDisplayView?.isUserInteractionEnabled = true
113 | self.previousDisplayView?.isUserInteractionEnabled = true
114 | self.lastDisplayView?.isUserInteractionEnabled = true
115 | self.currentDisplayView?.contentMode = .scaleAspectFill
116 | self.previousDisplayView?.contentMode = .scaleAspectFill
117 | self.lastDisplayView?.contentMode = .scaleAspectFill
118 | let tap = UITapGestureRecognizer.init(target: self, action: #selector(SSCycleScrollView.tapAction(_:)))
119 | self.addGestureRecognizer(tap)
120 | self.addSubview(currentDisplayView!)
121 | self.addSubview(previousDisplayView!)
122 | self.addSubview(lastDisplayView!)
123 |
124 | self.contentOffset = CGPoint(x: frame.width, y: 0)
125 |
126 | self.configDisplayViews()
127 | if needScroll {
128 | self.createScrollTimer()
129 | }
130 | }
131 |
132 | func configDisplayViews() {
133 | let previousArrayIndex = self.getArrayIndex(self.currentArrayIndex - 1)
134 | let lastArrayIndex = self.getArrayIndex(self.currentArrayIndex + 1)
135 | configPreviousDisplayView(previousArrayIndex: previousArrayIndex)
136 | configCurrentDisplayView()
137 | configLastDisplayView(lastArrayIndex: lastArrayIndex)
138 | self.contentOffset = CGPoint(x: self.frame.width, y: 0)
139 | }
140 |
141 | func cancelTimer() {
142 | self.animationTimer?.invalidate()
143 | self.animationTimer = nil
144 | }
145 |
146 | func getArrayIndex(_ currentIndex: Int) -> Int{
147 | if currentIndex == -1 {
148 | return allImageUrls.count - 1
149 | } else if currentIndex == allImageUrls.count {
150 | return 0
151 | } else {
152 | return currentIndex
153 | }
154 | }
155 |
156 | func configPreviousDisplayView(previousArrayIndex: Int) {
157 | let (webUrl, image) = decodeAllImageUrls(index: previousArrayIndex)
158 | if webUrl != nil && image != nil {
159 | self.previousDisplayView?.sd_setImage(with: webUrl, placeholderImage: image)
160 | } else if image == nil {
161 | self.previousDisplayView?.sd_setImage(with: webUrl)
162 | } else if webUrl == nil {
163 | self.previousDisplayView?.image = image
164 | }
165 | }
166 |
167 | func decodeAllImageUrls(index: Int) -> (webUrl: URL?, image: UIImage?) {
168 | var webUrl: URL?
169 | var image: UIImage?
170 | let firstString = allImageUrls[index][0]
171 | if firstString.hasPrefix("http") {
172 | webUrl = URL(string: firstString)
173 | if allImageUrls[index].count > 1 {
174 | if let img = UIImage(named: allImageUrls[index][1]) {
175 | image = img
176 | }
177 | }
178 | } else {
179 | if let img = UIImage(named: firstString) {
180 | image = img
181 | }
182 | }
183 | return (webUrl, image)
184 | }
185 |
186 | func configCurrentDisplayView() {
187 | let (webUrl, image) = decodeAllImageUrls(index: currentArrayIndex)
188 | if webUrl != nil && image != nil {
189 | self.currentDisplayView?.sd_setImage(with: webUrl, placeholderImage: image)
190 | } else if image == nil {
191 | self.currentDisplayView?.sd_setImage(with: webUrl)
192 | } else if webUrl == nil {
193 | self.currentDisplayView?.image = image
194 | }
195 | }
196 |
197 | func configLastDisplayView(lastArrayIndex: Int) {
198 | let (webUrl, image) = decodeAllImageUrls(index: lastArrayIndex)
199 | if webUrl != nil && image != nil {
200 | self.lastDisplayView?.sd_setImage(with: webUrl, placeholderImage: image)
201 | } else if image == nil {
202 | self.lastDisplayView?.sd_setImage(with: webUrl)
203 | } else if webUrl == nil {
204 | self.lastDisplayView?.image = image
205 | }
206 | }
207 | }
208 |
209 |
--------------------------------------------------------------------------------