All Projects → wayone → WOPageControl-OC

wayone / WOPageControl-OC

Licence: MIT license
小圆点 / PageControl

Programming Languages

objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to WOPageControl-OC

MSI-GP62-Hackintosh
Monterey on MSI GP62 6QG-1071XCN
Stars: ✭ 56 (+16.67%)
Mutual labels:  oc
ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh-Monterey
Asrock Z390 phantom gaming itx ac Hackintosh OpenCore EFI 华擎 Z390 幻影电竞 itx 黑苹果 OC EFI 🍎 🎮 Monterey
Stars: ✭ 25 (-47.92%)
Mutual labels:  oc
Hola
Light-weight Onboard/Walkthrough UIView/UIImage representer ⏪ & ⏩ ⏫ & ⏬
Stars: ✭ 40 (-16.67%)
Mutual labels:  pagecontrol
SwiftyUIScrollView
A custom ScrollView wrapper that comes with Pagination and Page Control.
Stars: ✭ 18 (-62.5%)
Mutual labels:  page-control
DYFStoreKit
([Swift] https://github.com/chenxing640/DYFStore) A lightweight and easy-to-use iOS library for In-App Purchases (Objective-C). DYFStoreKit uses blocks and notifications to wrap StoreKit, provides receipt verification and transaction persistence and doesn't require any external dependencies.
Stars: ✭ 52 (+8.33%)
Mutual labels:  oc
ViewPagers
When using the ViewPager widget it is not always obvious to the user that there are adjacent views they can navigate to. By implementing this widget you provide a clear indicator that there exists additional content which they can click or swipe to see.
Stars: ✭ 43 (-10.42%)
Mutual labels:  pagecontrol
Obfuscator
iOS工程混淆器是围绕混淆iOS代码过审上架为目标构建出来的 Mac 软件。为应对苹果『4.3-代码重复条款』和『2.1条款』,混淆器通过内置苹果应用分类相关的百万词库修改工程中的文件/目录名、变量属性名和方法名、修改资源的hash、注入强关系强调用的方法代码,注入有调用关系的混淆类文件等手段达到大幅提高马甲包过审率的目的。除此之外,软件内置了一键提交审核、实时查看app的审核状态并嵌入了几个开发效率工具如本地化工具、提取Assets资源、替换AppIcon等。(另外:我们提供马甲包开发、tf签名等服务,有意请🤙 联系QQ:2480619280)
Stars: ✭ 39 (-18.75%)
Mutual labels:  oc
Lokie
iOS efficient AOP Library using C++ and libffi
Stars: ✭ 139 (+189.58%)
Mutual labels:  oc
Jxsegmentedview
A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)
Stars: ✭ 1,905 (+3868.75%)
Mutual labels:  pagecontrol
Tycyclepagerview
a simple and usefull cycle pager view ,and auto scroll banner view(轮播图) ,include pageControl for iOS,support Objective-C and swift
Stars: ✭ 1,548 (+3125%)
Mutual labels:  pagecontrol
Jxcategoryview
A powerful and easy to use category view (segmentedcontrol, segmentview, pagingview, pagerview, pagecontrol) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)
Stars: ✭ 5,561 (+11485.42%)
Mutual labels:  pagecontrol
Chipagecontrol
A set of cool animated page controls written in Swift to replace boring UIPageControl. Mady by @ChiliLabs - https://chililabs.io
Stars: ✭ 2,909 (+5960.42%)
Mutual labels:  pagecontrol
DTOnboarding
A macOS onboarding component
Stars: ✭ 21 (-56.25%)
Mutual labels:  pagecontrol
react-native-chi-page-control
Cool page control animations written in React Native
Stars: ✭ 18 (-62.5%)
Mutual labels:  pagecontrol
tailor
Infrastructure as Code for OpenShift
Stars: ✭ 12 (-75%)
Mutual labels:  oc
hackintosh-hasee-k650d-i7-d3
Hackintosh opencore configurations drivers and patches on this Hasee model
Stars: ✭ 21 (-56.25%)
Mutual labels:  oc

小圆点 / PageControl - OC 版

点这里 Swift 版

支持自定义

  • 形状:圆形、方形。
  • 大小。
  • 间距。
  • 颜色。
(如果下面的图挂了,请在梯子中添加域名 githubusercontent.com)

img

示例代码

// 添加控件
self.pageControl = [[WOPageControl alloc] initWithFrame:CGRectMake(110, 200, 200, 4)];
[self.view addSubview:self.pageControl];

self.pageControl.cornerRadius = 5;
self.pageControl.dotHeight = 10;
self.pageControl.dotSpace = 24;
self.pageControl.currentDotWidth = 20;
self.pageControl.otherDotWidth = 10;
self.pageControl.otherDotColor = [UIColor colorWithRed:232/255.0 green:234/255.0 blue:236/255.0 alpha:1];
self.pageControl.currentDotColor = [UIColor colorWithRed:34/255.0 green:34/255.0 blue:34/255.0 alpha:1];
self.pageControl.numberOfPages = 5;

// 修改当前页
self.pageControl.currentPage = 1;
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].