2 "name": "AppFoundation",
4 "summary": "AppFoundation. for quik development",
5 "description": "AppFoundation. for quik development AppFoundation. for quik development",
6 "homepage": "https://github.com/chenguibang/AppFoundation.git",
12 "flyBGG": "735356384@qq.com"
18 "git": "https://github.com/chenguibang/AppFoundation.git",
23 "AppFoundation/**/*.{h,m}"
30 "vendored_frameworks": "AppFoundation/**/*.framework",
31 "vendored_libraries": "AppFoundation/**/*.a"
47 "IQKeyboardManager": [
59 "TZImagePickerController": [
62 "ScottAlertController": [
71 "CYLTableViewPlaceHolder": [
74 "WebViewJavascriptBridge": [
77 "UIButton-SSEdgeInsets": [
80 "UIButton+HHAddLayout": [
86 "RongCloudIM/IMLib": [
89 "RongCloudIM/IMKit": [
92 "RKNotificationHub": [
101 "SDCycleScrollView": [
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__*/"