hank
2017-06-14 3f9b5125cd79f60e878a3f93708d1254048fd1fb
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
36
37
38
39
//
//  TWTRDictUtil.h
//
//  Created by Jacob Harding on 5/29/14.
//  Copyright (c) 2014 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface TWTRDictUtil : NSObject
 
+ (CGFloat)CGFloatForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (double)doubleForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (BOOL)boolForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (NSInteger)intForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (long long)longlongForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (NSUInteger)unsignedIntegerForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (NSString *)stringFromNumberForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (id)objectForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (NSString *)stringForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (NSDate *)dateForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (NSDictionary *)dictForKey:(NSString *)key fromDict:(NSDictionary *)dict;
+ (NSArray *)arrayForKey:(NSString *)key fromDict:(NSDictionary *)dict;
 
@end
 
@interface TWTRArrayUtil : NSObject
 
/**
 * Returns a CGFloat at the given index. This method does not check bounds.
 */
+ (CGFloat)CGFloatAtIndex:(NSInteger)index;
 
@end
 
NS_ASSUME_NONNULL_END