forked from steipete/PSFoundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MTSplashScreen.h
35 lines (26 loc) · 879 Bytes
/
MTSplashScreen.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
27
28
29
30
31
32
33
34
35
//
// MTSplashScreen.h
// PSFoundation
//
// Created by Matthias Tretter on 03.06.11.
// Copyright 2011 @myell0w. All rights reserved.
//
// Taken from Book iOS Recipes - The Pragmatic Programmers b4: Recipe 1
// Originally Created by Matt Drance on 10/1/10.
// Copyright 2010 Bookhouse Software, LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MTSplashScreenDelegate.h"
@interface MTSplashScreen : UIViewController {
UIImage *splashImage_;
BOOL showsStatusBarOnDismissal_;
NSTimeInterval delay_;
id<MTSplashScreenDelegate> delegate_;
}
@property (nonatomic, retain) UIImage *splashImage;
@property (nonatomic, assign) BOOL showsStatusBarOnDismissal;
@property (nonatomic, assign) id<MTSplashScreenDelegate> delegate;
@property (nonatomic, assign) NSTimeInterval delay;
+ (MTSplashScreen *)splashScreen;
- (void)hide;
@end