All Projects → Interactive-Studio → Ispagecontrol

Interactive-Studio / Ispagecontrol

Licence: mit
A page control similar to that used in Instagram

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Ispagecontrol

Llsegmentviewcontroller
可添加header的多控制器列表,主流APP分类切换滚动视图(京东,网易新闻,爱奇艺,QQ弹性小球等,可高度自定义,项目结构清晰);UIScrollView 嵌套,可做个人详情页,商品详情页,页面多tableView滑动悬停
Stars: ✭ 176 (-38.25%)
Mutual labels:  indicator, page
Jxcategoryview
A powerful and easy to use category view (segmentedcontrol, segmentview, pagingview, pagerview, pagecontrol) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)
Stars: ✭ 5,561 (+1851.23%)
Mutual labels:  indicator, page
Instagramactivityindicator
Activity Indicator similar to Instagram's.
Stars: ✭ 138 (-51.58%)
Mutual labels:  instagram, indicator
Jxsegmentedview
A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)
Stars: ✭ 1,905 (+568.42%)
Mutual labels:  indicator, page
Scrollingpagerindicator
Pager indicator inspired by Instagram. Lightweight and easy to set up.
Stars: ✭ 419 (+47.02%)
Mutual labels:  instagram, indicator
Bubblepagerindicator
A view pager indicator view to deal with a large amount of pages.
Stars: ✭ 127 (-55.44%)
Mutual labels:  instagram, indicator
Pageindicator
An Instagram like page indicator compatible with RecyclerView and ViewPager.
Stars: ✭ 236 (-17.19%)
Mutual labels:  instagram, indicator
SharpGrabber
Download from YouTube, Vimeo, PornHub, HLS (M3U8 files) with .NET and JavaScript, Library and desktop app for downloading high quality media
Stars: ✭ 138 (-51.58%)
Mutual labels:  instagram
Cmpagetitleview
✍️一分钟集成类似抖音,新浪微博,腾讯视频,网易新闻,今日头条等常见的标题栏样式,api灵活易扩展,支持Cocoapods和Masonry布局,支持ChildController的完整生命周期
Stars: ✭ 270 (-5.26%)
Mutual labels:  indicator
Ananas
An easy image editor integration for your Android apps.
Stars: ✭ 186 (-34.74%)
Mutual labels:  instagram
instagram-stories
Get the Instagram Stories in Node.js and Browser
Stars: ✭ 86 (-69.82%)
Mutual labels:  instagram
instagram private api
An Instagram-Client written in Dart
Stars: ✭ 39 (-86.32%)
Mutual labels:  instagram
Embera
A Oembed consumer library, that gives you information about urls. It helps you replace urls to youtube or vimeo for example, with their html embed code. It has advanced features like offline support, responsive embeds and caching support.
Stars: ✭ 268 (-5.96%)
Mutual labels:  instagram
aboutmeinfo-telegram-bot
ℹ️ About Me Info Bot: Share your social media and links on Telegram
Stars: ✭ 20 (-92.98%)
Mutual labels:  instagram
Instagram stories
Inspired by Instagram Stories functionality. This source is similar to Instagram Stories, which is having both image and video support.
Stars: ✭ 275 (-3.51%)
Mutual labels:  instagram
Instagram-Scraper-2021
Scrape Instagram content and stories anonymously, using a new technique based on the har file (No Token + No public API).
Stars: ✭ 57 (-80%)
Mutual labels:  instagram
Bibliogram
An alternative front-end for Instagram.
Stars: ✭ 281 (-1.4%)
Mutual labels:  instagram
Metalfilters
Instagram filters implemented in Metal
Stars: ✭ 272 (-4.56%)
Mutual labels:  instagram
Pyinstastories
Python script to download Instagram stories from Instagram users.
Stars: ✭ 260 (-8.77%)
Mutual labels:  instagram
Transformerslayout
🔥 App金刚区导航菜单,类似淘宝、QQ音乐等APP导航,方格布局横向多行滑动翻页带滚动条
Stars: ✭ 258 (-9.47%)
Mutual labels:  page

ISPageControl

Carthage compatible Version Xcode 9.0+ iOS 8.0+ Swift 4.0+ License

ISPageControl has a page control similar to that used in the Instagram

Contents

Requirements

  • iOS 8.0+
  • Xcode 9.0+
  • Swift 4.0+

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

CocoaPods 1.1+ is required to build ISPageControl 4.0+.

To integrate ISPageControl into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target '<Your Target Name>' do
pod 'ISPageControl', '~> 0.1.0'
end

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate ISPageControl into your Xcode project using Carthage, specify it in your Cartfile:

github "Interactive-Studio/ISPageControl" ~> 0.1.0

Run carthage update to build the framework and drag the built ISPageControl.framework into your Xcode project.

Manually

If you prefer not to use either of the aforementioned dependency managers, you can integrate ISPageControl into your project manually.


Usage

The usage of ISPageControl is very simple

Storyboard, Xib

Just drop UIView and set its class to be one of ISPageControl.

Code

let frame = CGRect(x: 0, y: 500, width: UIScreen.main.bounds.width, height: 100)
pageControl = ISPageControl(frame: frame, numberOfPages: 4)
pageControl.radius = 10
pageControl.padding = 10
pageControl.inactiveTintColor = UIColor.purple
pageControl.borderWidth = 3
pageControl.borderColor = UIColor.red
view.addSubview(pageControl)

Custom

@IBInspectable open var inactiveTintColor: UIColor

@IBInspectable open var currentPageTintColor: UIColor

@IBInspectable open var radius: CGFloat

@IBInspectable open var padding: CGFloat

@IBInspectable open var minScaleValue: CGFloat

@IBInspectable open var middleScaleValue: CGFloat

@IBInspectable open var numberOfPages: Int

@IBInspectable open var hideForSinglePage: Bool

@IBInspectable open var inactiveTransparency: CGFloat

@IBInspectable open var borderWidth: CGFloat

@IBInspectable open var borderColor: UIColor

If you want to know more detailed usage, please refer to Example.

Communication

  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Credits

License

ISPageControl is released under the MIT license. See LICENSE for details.

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].