blob: e4c46f3b7b6f650a5f1d45035a2f4c65868da3cd (
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
|
//
// User.h
// Juick
//
// Created by Vitaly on 01.02.14.
// Copyright (c) 2014 com.juick. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <RestKit/RestKit.h>
@interface User : NSObject
@property (nonatomic, strong) NSString *uname;
@property (nonatomic, strong) NSString *uid;
+ (void) get:(NSString *)name callback:(void(^)(User *))callback;
+ (BOOL) isAuthenticated;
+ (void) checkIsValid:(void(^)(BOOL))callback;
+ (void) throwUnableToLogin;
@end
|