All Projects → MrPans → Pscarouselview

MrPans / Pscarouselview

Licence: mit
A drop-in carousel view. Most of Apps put it in their first screen.

Projects that are alternatives of or similar to Pscarouselview

Swiftymenu
Simple and Elegant Drop down menu for iOS 🔥💥
Stars: ✭ 356 (+138.93%)
Mutual labels:  cocoapods, storyboard
Sidemenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less.
Stars: ✭ 5,267 (+3434.9%)
Mutual labels:  cocoapods, storyboard
Mylinearlayout
MyLayout is a powerful iOS UI framework implemented by Objective-C. It integrates the functions with Android Layout,iOS AutoLayout,SizeClass, HTML CSS float and flexbox and bootstrap. So you can use LinearLayout,RelativeLayout,FrameLayout,TableLayout,FlowLayout,FloatLayout,PathLayout,GridLayout,LayoutSizeClass to build your App 自动布局 UIView UITab…
Stars: ✭ 4,152 (+2686.58%)
Mutual labels:  cocoapods, storyboard
Chipagecontrol
A set of cool animated page controls written in Swift to replace boring UIPageControl. Mady by @ChiliLabs - https://chililabs.io
Stars: ✭ 2,909 (+1852.35%)
Mutual labels:  cocoapods, storyboard
Centeredcollectionview
A lightweight UICollectionViewLayout that 'pages' and centers its cells 🎡 written in Swift
Stars: ✭ 965 (+547.65%)
Mutual labels:  cocoapods, carousel
Stevia
🍃 Concise Autolayout code
Stars: ✭ 3,182 (+2035.57%)
Mutual labels:  cocoapods, storyboard
Sidemenu
An interactive iOS side menu with rich features.
Stars: ✭ 442 (+196.64%)
Mutual labels:  cocoapods, storyboard
Localize
Localize is a framework writed in swift to localize your projects easier improves i18n, including storyboards and strings.
Stars: ✭ 253 (+69.8%)
Mutual labels:  cocoapods, storyboard
Cyltabbarcontroller
[EN]It is an iOS UI module library for adding animation to iOS tabbar items and icons with Lottie, and adding a bigger center UITabBar Item. [CN]【中国特色 TabBar】一行代码实现 Lottie 动画TabBar,支持中间带+号的TabBar样式,自带红点角标,支持动态刷新。【iOS13 & Dark Mode & iPhone XS MAX supported】
Stars: ✭ 6,605 (+4332.89%)
Mutual labels:  cocoapods, storyboard
Forceblur
ForceBlur Animation for iOS Messaging Apps
Stars: ✭ 666 (+346.98%)
Mutual labels:  cocoapods, storyboard
Swiftcolorgen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors
Stars: ✭ 152 (+2.01%)
Mutual labels:  cocoapods, storyboard
Keyboardhidemanager
Codeless manager to hide keyboard by tapping on views for iOS written in Swift
Stars: ✭ 57 (-61.74%)
Mutual labels:  cocoapods, storyboard
Uitextfield Navigation
🏄‍♂️ UITextField-Navigation makes it easier to navigate between UITextFields and UITextViews
Stars: ✭ 436 (+192.62%)
Mutual labels:  cocoapods, storyboard
Kydrawercontroller
Side Drawer Navigation Controller similar to Android
Stars: ✭ 632 (+324.16%)
Mutual labels:  cocoapods, storyboard
Tangramkit
TangramKit is a powerful iOS UI framework implemented by Swift. It integrates the functions with Android layout,iOS AutoLayout,SizeClass, HTML CSS float and flexbox and bootstrap. So you can use LinearLayout,RelativeLayout,FrameLayout,TableLayout,FlowLayout,FloatLayout,LayoutSizeClass to build your App 自动布局 UIView UITableView UICollectionView
Stars: ✭ 984 (+560.4%)
Mutual labels:  cocoapods, storyboard
Switch
💊 An iOS switch control implemented in Swift with full Interface Builder support
Stars: ✭ 132 (-11.41%)
Mutual labels:  cocoapods, storyboard
Stickyheaderflowlayout
Sticky headers for UICollectionView written in pure Swift (based on CSStickyHeaderFlowLayout)
Stars: ✭ 144 (-3.36%)
Mutual labels:  cocoapods
Eureka
Elegant iOS form builder in Swift
Stars: ✭ 11,345 (+7514.09%)
Mutual labels:  cocoapods
Bekcurvetabbar
Full Customizable Tabbar with IBInspectables
Stars: ✭ 144 (-3.36%)
Mutual labels:  cocoapods
Donut
Donut is a library for arranging views circularly like a donut.
Stars: ✭ 141 (-5.37%)
Mutual labels:  cocoapods

Logo

PSCarouselView Logo

PSCarouselView

Codacy Badge docs Pod Version License Platform SwiftCompatible

A drop-in carousel view. Most Applications put it in their first screen. 中文


Preview

image

Enhancement

Storyboard inspector supported since version 1.1.0

image

Installation with CocoaPods

Specify it in your podfile:

pod 'PSCarouselView'

Then, run the following command:

$ pod install

Install manually

Clone project, add PSCarouselView folder to your project and don't forget check the copy item if needed box.

SDWebImage framework required. Make sure you had imported SDWebImage when install PSCarouselView manually.

Getting Start

1.Drag a UICollectionView into your Storyboard and make sure your constraints has been set.

2.Set PSCarouselView as a custom class for this collectionView in Storyboard Inspector.

custom class

3.Connect IBOutlet to Your ViewController.

@interface ViewController ()<PSCarouselDelegate>

@property (weak, nonatomic) IBOutlet PSCarouselView *carouselView;

4.Set value for PSCarouselView's imageURL property.

5.Implement PSCarouselDelegate if you want to make a pageControl.

- (void)carousel:(PSCarouselView *)carousel didMoveToPage:(NSUInteger)page
{
    self.pageControl.currentPage = page;
}

- (void)carousel:(PSCarouselView *)carousel didTouchPage:(NSUInteger)page
{
    NSLog(@"PSCarouselView did TOUCH No.%ld page",page);
}

API Reference

shengpan.net or CocoaPods Doc

For more,download and see the demo。

LICENSE

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].