-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGuideView.h
26 lines (21 loc) · 845 Bytes
/
GuideView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// GuideView.h
//
//
// Created by Cloay on 12-9-18.
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "UIImage+SplitImageIntoTwoParts.h"
#define DEVICE_IS_IPHONE5 ([[UIScreen mainScreen] bounds].size.height == 568)
@interface GuideView : UIView<UIScrollViewDelegate>
@property (retain, nonatomic) IBOutlet UIImageView *imageView;
@property (nonatomic,strong) UIImageView *left;
@property (nonatomic,strong) UIImageView *right;
@property (retain, nonatomic) IBOutlet UIScrollView *pageScroll;
@property (retain, nonatomic) IBOutlet UIPageControl *pageControl;
@property (retain, nonatomic) IBOutlet UIButton *closeButton;
@property (retain, nonatomic) IBOutlet UIButton *startButton;
- (IBAction)startButtonDidPressed:(id)sender;
- (IBAction)closeButtonDidPressed:(id)sender;
@end