mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
20 lines
410 B
Objective-C
Executable file
20 lines
410 B
Objective-C
Executable file
//
|
|
// ViewController.h
|
|
// PageViewController
|
|
//
|
|
// Created by Tom Fewster on 11/01/2012.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface PagerViewController : UIViewController <UIScrollViewDelegate>
|
|
|
|
@property (nonatomic, strong) IBOutlet UIScrollView *scrollView;
|
|
@property (nonatomic, strong) IBOutlet UIPageControl *pageControl;
|
|
|
|
- (IBAction)changePage:(id)sender;
|
|
|
|
- (void)previousPage;
|
|
- (void)nextPage;
|
|
|
|
@end
|