Created
September 30, 2011 22:00
-
-
Save Nub/1255098 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // BWPagedView.m | |
| // BiggerWallet | |
| // | |
| // Created by Zachry Thayer on 9/30/11. | |
| // Copyright Zachry Thayer. All rights reserved. | |
| // | |
| #import "BWPagedView.h" | |
| @implementation BWPagedView | |
| @synthesize delegate = delegate; | |
| @synthesize dataSource = dataSource; | |
| @synthesize pageViewControllers = pageViewControllers; | |
| @synthesize page = page; | |
| - (id)init | |
| { | |
| self = [super init]; | |
| if (self) { | |
| super.delegate = self; | |
| } | |
| return self; | |
| } | |
| @end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment