summaryrefslogtreecommitdiff
path: root/Juick/AppDelegate.h
blob: 3316d3f32f6125010f495c430e56c767a4cfa86b (plain) (blame)
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
//
//  AppDelegate.h
//  Juick
//
//  Created by Vitaly Takmazov on 26.10.13.
//  Copyright (c) 2013 com.juick. All rights reserved.
//

@import UIKit;
#import "ThreadViewController.h"
#import "User.h"

@interface AppDelegate : UIResponder <UIApplicationDelegate, UNUserNotificationCenterDelegate>

@property (strong, nonatomic) UIWindow *window;

-(void) registerForRemoteNotifications;

+(AppDelegate *) shared;

+(ThreadViewController *) threadViewController;

@property (strong, nonatomic) NSNumber *pushedThread;
@property (strong, nonatomic) NSString *pushedUname;

@end