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