2012-02-02 13:56:09 +00:00
|
|
|
//
|
2012-02-05 21:18:38 +00:00
|
|
|
// MPGuideViewController.h
|
2012-02-03 07:45:09 +00:00
|
|
|
// MasterPassword
|
2012-02-02 13:56:09 +00:00
|
|
|
//
|
|
|
|
// Created by Maarten Billemont on 30/01/12.
|
|
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2014-06-22 01:59:14 +00:00
|
|
|
@interface MPGuideViewController : UIViewController<UICollectionViewDataSource, UICollectionViewDelegateFlowLayout>
|
2012-02-02 13:56:09 +00:00
|
|
|
|
2014-06-22 01:59:14 +00:00
|
|
|
@property(nonatomic) IBOutlet UICollectionView *collectionView;
|
|
|
|
@property(nonatomic) IBOutlet UILabel *captionLabel;
|
|
|
|
@property(nonatomic) IBOutlet UIPageControl *pageControl;
|
|
|
|
@property(nonatomic) IBOutlet UINavigationBar *navigationBar;
|
2013-04-14 14:24:24 +00:00
|
|
|
|
2014-06-22 01:59:14 +00:00
|
|
|
- (IBAction)close:(id)sender;
|
2012-02-02 13:56:09 +00:00
|
|
|
|
|
|
|
@end
|