diff options
Diffstat (limited to 'Juick/AppDelegate.h')
-rw-r--r-- | Juick/AppDelegate.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Juick/AppDelegate.h b/Juick/AppDelegate.h index 04a903a..8b89131 100644 --- a/Juick/AppDelegate.h +++ b/Juick/AppDelegate.h @@ -22,12 +22,14 @@ extern NSString * const UserUpdatedNotificationName; +(AppDelegate *) shared; -+(ThreadViewController *) threadViewController; +-(void) presentThread:(UIViewController *)vc; +-(void) presentEditor:(UIViewController *)vc; +-(void) presentLoginView:(UIViewController *)vc; @property (strong, nonatomic) NSNumber *pushedThread; @property (strong, nonatomic) NSString *pushedUname; @property (strong, nonatomic) NSNumber *pushedReplyId; -- (void) presentLoginView:(UIViewController *)vc; + @end |