[Add] ZMarkupParser 1.12.0
[CocoaPods.git] / Specs / b / 8 / e / AppFoundation / 0.0.1 / AppFoundation.podspec.json
blob2fafa695dea419a759644a90bda058c73a247545
2   "name": "AppFoundation",
3   "version": "0.0.1",
4   "summary": "AppFoundation. for quik development",
5   "description": "AppFoundation. for quik development AppFoundation. for quik development",
6   "homepage": "https://github.com/chenguibang/AppFoundation.git",
7   "license": {
8     "type": "MIT",
9     "file": "FILE_LICENSE"
10   },
11   "authors": {
12     "flyBGG": "735356384@qq.com"
13   },
14   "platforms": {
15     "ios": "8.0"
16   },
17   "source": {
18     "git": "https://github.com/chenguibang/AppFoundation.git",
19     "tag": "0.0.1"
20   },
21   "source_files": [
22     "AppFoundation",
23     "AppFoundation/**/*.{h,m}"
24   ],
25   "frameworks": [
26     "UIKit",
27     "Foundation"
28   ],
29   "ios": {
30     "vendored_frameworks": "AppFoundation/**/*.framework",
31     "vendored_libraries": "AppFoundation/**/*.a"
32   },
33   "requires_arc": true,
34   "dependencies": {
35     "LBXScan": [
36       "~> 2.2"
37     ],
38     "FMDB": [
39       "~> 2.6.2"
40     ],
41     "SVProgressHUD": [
42       "~> 2.1.2"
43     ],
44     "YBPopupMenu": [
45       "~> 0.1.2"
46     ],
47     "IQKeyboardManager": [
48       "~> 4.0.9"
49     ],
50     "MJExtension": [
51       "~> 3.0.13"
52     ],
53     "pop": [
55     ],
56     "Masonry": [
57       "~> 1.0.2"
58     ],
59     "TZImagePickerController": [
60       "~> 1.8.1"
61     ],
62     "ScottAlertController": [
63       "~> 0.1.0"
64     ],
65     "MJRefresh": [
66       "~> 3.1.12"
67     ],
68     "RefreshControl": [
69       "~> 2.0.5"
70     ],
71     "CYLTableViewPlaceHolder": [
72       "~> 1.0.8"
73     ],
74     "WebViewJavascriptBridge": [
75       "~> 6.0.2"
76     ],
77     "UIButton-SSEdgeInsets": [
78       "~> 0.1.7"
79     ],
80     "UIButton+HHAddLayout": [
81       "~> 0.0.1"
82     ],
83     "NSDate-Escort": [
84       "~> 1.8.2"
85     ],
86     "RongCloudIM/IMLib": [
87       "~> 2.8.3"
88     ],
89     "RongCloudIM/IMKit": [
90       "~> 2.8.3"
91     ],
92     "RKNotificationHub": [
94     ],
95     "KVOController": [
97     ],
98     "VIPhotoView": [
100     ],
101     "SDCycleScrollView": [
103     ]
104   },
105   "prefix_header_contents": "#ifdef __OBJC__\n\n\n\n#pragma mark - 头文件导入\n#import \"Header.h\"\n\n\n#pragma mark - 通知\n#define NOTI_HOMEVCSHOW @\"NOTI_HOMEVCSHOW\"\n\n\n\n\n\n\n\n#pragma mark - ------------------\n#pragma mark - 通用与工具App无关,通用\n#pragma mark - ------------------\n\n#pragma mark - 版本相关\n#define kAppVersion [[[NSBundle mainBundle] infoDictionary] objectForKey:@\"CFBundleShortVersionString\"]\n\n\n#pragma mark - 设备\n#define SCREEN_WIDTH   [UIScreen mainScreen].bounds.size.width\n#define SCREENH_HEIGHT [UIScreen mainScreen].bounds.size.height\n\n#pragma mark - 颜色\n#define UIColorWithRGBA(r,g,b,a) [UIColor colorWithRed:r/255.0f green:g/255.0f blue:b/255.0f alpha:a]\n#define UIColorWithRGB(r,g,b) UIColorWithRGBA(r,g,b,1.0f)\n#define UIColorWithString(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]\n\n#define UIColorWithRandom [UIColor colorWithRed:arc4random_uniform(255)/255.0 green:arc4random_uniform(255)/255.0 blue:arc4random_uniform(255)/255.0 alpha:1]\n\n#pragma mark - 日志\n#ifdef DEBUG\n#define NSLog(...) NSLog(@\"%s 第%d行 \n %@\n\n\",__func__,__LINE__,[NSString stringWithFormat:__VA_ARGS__])\n#else\n#define NSLog(...)\n#endif\n\n#pragma mark - 弱引用/强引用\n#define WeakSelf(type)  __weak typeof(type) weak##type = type;\n#define StrongSelf(type)  __strong typeof(type) type = weak##type;\n\n#pragma mark - XIB\n#define XIB(name) [[NSBundle mainBundle] loadNibNamed:name owner:nil options:nil][0]\n#define XIBController(name) [[UIViewController alloc] initWithNibName:name bundle:nil]\n\n\n#pragma mark - 图片\n#define UIImageWithNamed(_pointer) [UIImage imageNamed:_pointer]\n\n\n\n\n#endif /* __OBJC__*/"