Skip to content

pzhao5/iOSPagingView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iOSPagingView

Utility view for combining UIScrollView and UIPageControl

This repo is designed to copy into your workspace and modified the existed code to build new feature ontop of it.

To use it:

PPPagingView *v = [[PPPagingView alloc] initWithFrame:self.view.bounds];

UIView *v1 = [UIView alloc] init]; v1.backgroundColor = [UIColor redColor];

UIView *v2 = [UIView alloc] init]; v2.backgroundColor = [UIColor blueColor];

UIView *v3 = [UIView alloc] init]; v3.backgroundColor = [UIColor yellowColor];

[v addView:v1]; [v addView:v2]; [v addView:v3];

[self.view addSubview:v];

About

Utility view for combining UIScrollView and UIPageControl

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published