FYHelper 0.4.40

FYHelper 0.4.40

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Aug 2019

Maintained by iosfeng.



 
Depends on:
AFNetworking>= 0
KVOController>= 0
Masonry>= 0
pop>= 0
CocoaLumberjack>= 0
 

FYHelper 0.4.40

  • By
  • fengyiyi

FYHelper -- App快速构建框架

文件夹分类说明

【FYCategory】收集的一些常用的便捷方法,方便快速开发
【FYInstall】 常用第三方库的安装器
【FYSubclass】收集的UI控件子类
【FYUtil】    常用的一些工具类
【FYUIKit】   对基础UIKit控件的封装,集成一些基础的常用的必备的功能

支持的功能

1,支持Bugly

用法:
[Bugly fy_setupWithAppId:@"xxxxxx"]; // xxxxxx你在bugly.qq.com申请的app id.

// Bulgy的打印Log的方法
BLYLogError(fmt, ...)
BLYLogWarn(fmt, ...)
BLYLogInfo(fmt, ...)
BLYLogDebug(fmt, ...)
BLYLogVerbose(fmt, ...)

void BLYLog(BuglyLogLevel level, NSString *format, ...);
void BLYLogv(BuglyLogLevel level, NSString *format, va_list args);

2,支持DDLog,一个强大的log系统

用法:
// Convert from this:
NSLog(@"Broken sprocket detected!");
NSLog(@"User selected file:%@ withSize:%u", filePath, fileSize);
// To this:
DDLogError(@"Broken sprocket detected!");
DDLogVerbose(@"User selected file:%@ withSize:%u", filePath, fileSize);

3,支持AFNetworking,这个大家应该都知道吧

4,支持FLEX,一个调试UI的框架

5,支持FMDB,数据库的处理

6,支持Instabug,一个用户反馈的系统

7,支持KVOController

8,支持UIScrollView及其子类没数据是显示一些提示,使用的是DZNEmptyDataSet

9,支持Masonry,简单好写的Autolayout哦

10,支持pop,一个很好用的动画库

11,支持版本的更新,使用的是iVersion

12,点击UIScrollView的空白处收回键盘。