Skip to content

Instantly share code, notes, and snippets.

@Nub
Created September 30, 2011 22:00
Show Gist options
  • Select an option

  • Save Nub/1255098 to your computer and use it in GitHub Desktop.

Select an option

Save Nub/1255098 to your computer and use it in GitHub Desktop.
//
// 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