-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYourProject-Prefix.pch
90 lines (77 loc) · 2.94 KB
/
YourProject-Prefix.pch
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//
// YourProject-Prefix.pch
//
//
// Created by Prem Kumar on 01/12/16.
//
//
#ifndef YourProject_Prefix_pch
#define YourProject_Prefix_pch
#define IS_IPHONE_4_OR_LESS (IS_IPHONE && SCREEN_MAX_LENGTH < 568.0)
#define IS_IPHONE_5 (IS_IPHONE && SCREEN_MAX_LENGTH == 568.0)
#define IS_IPHONE_6 (IS_IPHONE && SCREEN_MAX_LENGTH == 667.0)
#define IS_IPHONE_6P (IS_IPHONE && SCREEN_MAX_LENGTH == 736.0)
#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
#define IS_RETINA ([[UIScreen mainScreen] scale] >= 2.0)
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
#define SCREEN_WIDTH ([[UIScreen mainScreen] bounds].size.width)
#define SCREEN_HEIGHT ([[UIScreen mainScreen] bounds].size.height)
#define SCREEN_MAX_LENGTH (MAX(SCREEN_WIDTH, SCREEN_HEIGHT))
#define SCREEN_MIN_LENGTH (MIN(SCREEN_WIDTH, SCREEN_HEIGHT))
#define ApiBaseURL @"http://gts-sedaya.com/demo/dtrade/classyappapi.php?status="
#define ApiBaseURLNew @"http://dtrade.my/classyappapi.php?status="
#define RateCardURL @"http://www.hellocabs.com.mm/en/content/rate-card"
#define PrimiarCabURL @"http://www.hellocabs.com.mm"
#import "AFNetworking.h"
#import "ProgressHUD.h"
#import "ActionSheetDatePicker.h"
#import <SDWebImage/UIImageView+WebCache.h>
#import "SideView.h"
#import "UIAlertView+Blocks.h"
#import "ADPageControl.h"
#import "LoginViewController.h"
#import "ViewController.h"
#import "ForgotViewController.h"
#import "CountryViewController.h"
#import "FavCellSmall.h"
#import "SignupViewController.h"
#import "DashboardViewController.h"
#import "AssignmentTableViewCell.h"
#import "SubCatViewController.h"
#import "ListViewController.h"
#import "DetailTableViewCell.h"
#import "StarRatingView.h"
#import "ExibitionViewController.h"
#import "ExcibitionTableViewCell.h"
#import "SettingsViewController.h"
#import "BlockAlertView.h"
#import "BlockActionSheet.h"
#import "BlockTextPromptAlertView.h"
#import "BlockTableAlertView.h"
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>
#import "Annotation.h"
#import "ProfileViewController.h"
#import <GoogleMaps/GoogleMaps.h>
#import "EditViewController.h"
#import "LeveyPopListView.h"
#import "SearchListViewController.h"
#import "StarRatingControl.h"
#import "ContactViewController.h"
#import "AboutViewController.h"
#import "DetailViewController.h"
#import "JScrollView+PageControl+AutoScroll.h"
#import "HCSStarRatingView.h"
#import "JPSThumbnailAnnotation.h"
#import "CustomIOSAlertView.h"
#import "ExciSubCatViewController.h"
#import "ExciCatViewController.h"
#import "ExciListViewController.h"
#import "ExibitionSearchViewController.h"
#import "ExiDetailViewController.h"
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <FBSDKLoginKit/FBSDKLoginKit.h>
#define SupportLabel @"Support"
#define SupportLabel_KA @"Support Kanada"
#endif /* YourProject_Prefix_pch */