GitHub常用 库
来自: http://www.jianshu.com/p/6475c90e8b4d
网络请求库
https://github.com/AFNetworking/AFNetworking
https://github.com/Alamofire/AlamofireImage
菜单
https://github.com/yoavlt/LiquidFloatingActionButton
https://github.com/smasoumi/FAB-Loading
https://github.com/nitingeorge227/NGSplitMenuController (iPad侧滑菜单)
刷新
https://github.com/CoderMJLee/MJRefresh
https://github.com/anaglik/PeriscopyPullToRefresh
https://github.com/adad184/MMPopupView
https://github.com/oyuk/OYSimpleAlertController
Loading、动画
https://github.com/jonathantribouharet/JTMaterialSpinner
https://github.com/poolqf/FillableLoaders
https://github.com/BLPoonia/BLMultiColorLoader
https://github.com/BLPoonia/BLLoader
自定义相机、照片裁剪
https://github.com/kishikawakatsumi/PEPhotoCropEditor
https://github.com/mukyasa/MMCamScanner
https://github.com/Aevit/SCCaptureCamera
https://github.com/kimsungwhee/KSHMosaicCamera
https://github.com/mmackh/IPDFCameraViewController
https://github.com/GabrielAlva/Cool-iOS-Camera
UITableView 动画
https://github.com/mukyasa/MMTransitionEffect
https://github.com/KittenYang/KYPingTransition
https://github.com/KittenYang/KYElegantPhotoGallery
https://github.com/terenceLuffy/AppStoreStyleHorizontalScrollView
https://github.com/xxxAIRINxxx/ARNTransitionAnimator
https://github.com/y-hryk/YSLTransitionAnimator
https://github.com/xxxAIRINxxx/GooglePlayTransition
导航栏
https://github.com/gklka/GKFadeNavigationController
https://github.com/bryankeller/BLKFlexibleHeightBar
UISwitch
https://github.com/gontovnik/DGRunkeeperSwitch
Emoji 、键盘
https://github.com/ayushgoel/AGEmojiKeyboard
输入框
https://github.com/ws00801526/XMChatBarExample
日历
https://github.com/jonathantribouharet/JTCalendar
视频播放类
https://github.com/0xced/XCDYouTubeKit
https://github.com/iMoreApps/ffmpeg-avplayer-for-ios
https://github.com/36Kr-Mobile/KRVideoPlayer
GitHub常用 库的更多相关文章
- 大型项目 Gradle 的常用库和版本管理[转]
http://www.tuicool.com/articles/vqQZBrm 大型项目 Gradle 的常用库和版本管理 时间 2016-03-15 06:44:00 Mystra 原文 htt ...
- iPhone开发 - 常用库
iPhone开发 - 常用库 这里总结了iPhone开发者开发过程中可能需要的一些资源 如何用Facebook graphic api上传视频: http://developers.facebook. ...
- Linux 使用 github 常用命令
Linux 使用 github 常用命令 今天整理一下常用的 github 命令,自己只是一个编程小白,有些地方可能做的不是很好,仅仅用作自己的学习使用. 创建一个文件夹用于存放github仓库 m ...
- python 库安装方法及常用库
python 库安装方法及常用库 python库安装方法: 方法一:setpu.py 1.下载库压缩包,解压,记录下路径:*:/**/……/ 2.运行cmd,切换到*:/**/……/目录下 3.运行s ...
- github常用的git命令
添加已有项目到github: touch README.md //新建说明文件 git init //在当前项目目录中生成本地git管理,并建立一个隐藏.git目录 git add . //添加当前目 ...
- Python扫描器-常用库-Request
1.常用库-Request 1.1. 介绍 #安装:pip3 install requests #各种请求方式:常用的就是requests.get()和requests.post() >> ...
- Python的常用库
读者您好.今天我将介绍20个属于我常用工具的Python库,我相信你看完之后也会觉得离不开它们.他们是: Requests.Kenneth Reitz写的最富盛名的http库.每个Python程序员都 ...
- Git与GitHub常用操作
--------------------------基本操作--------------------------clone 拷贝远程仓库commit 本地提交push 远程提交pull 更新本地--- ...
- Github优质库分享-01算法小抄 基于LeetCode
Github 优质库分享-01 算法小抄 该库总共 60 多篇原创文章,都是基于 LeetCode 的题目,涵盖了所有题型和技巧,而且一定要做到举一反三,通俗易懂,绝不是简单的代码堆砌. 目前 sta ...
随机推荐
- "const wchar_t is incompatible with parameter of type "LPCSTR"
MessageBox(NULL, L"TEST", L"TEST", MB_OK); You may get this error if you "U ...
- Error 1937.An error occurred during the installation of assembly...
工具:Installshield 2008 任务: 1. 创建一个 Merge Module 工程, 在 Merge Module 中包含若干 dll, 在安装过程中,dll 会被安装到指定路径. 2 ...
- hdu 5055 Bob and math problem
先把各个数字又大到小排列,如果没有前导零并且为奇数,则直接输出.如果有前导零,则输出-1.此外,如果尾数为偶数,则从后向前找到第一个奇数,并把其后面的数一次向前移动,并把该奇数放到尾部. 值得注意的是 ...
- Yii 通过widget小物件生成添加表单
通过widget小物件创建添加商品的表单 视图里,表单以endWidget();?>结束 最终效果: 把表单提交过来的信息保存到数据库中去. 补充要点: 密码表单: <?php echo ...
- VS2005调试时无法找到调试信息解决方法
调试C++程序的时候出现,无法找到.exe的调试信息,或者调试信息不匹配.未使用调试信息生成二进制文件.解决方法:打开菜单项目->项目属性页: 1.选择配置属性->链接器->调试-& ...
- c#中多线程访问winform控件的若干问题
我们在做winform应用的时候,大部分情况下都会碰到使用多线程控制界面上控件信息的问题.然而我们并不能用传统方法来解决这个问题,下面我将详细的介绍. 首先来看传统方法: public partial ...
- 简单重置Centos服务器中Mysql的root密码
1.编辑MySQL配置文件my.cnf vi /etc/my.cnf #编辑文件,找到[mysqld],在下面添加一行skip-grant-tables [mysqld] skip-grant-tab ...
- php生成随机产生六位数密码的代码
php生成随机产生六位数密码的代码,供大家学习参考.本文转自:http://www.jbxue.com/article/6199.html php生成随机产生六位数密码的代码,供大家学习参考. 复制代 ...
- li样式不显示使用overflow:hidden导致Li前面点、圈等样式不见
点评:用了overflow:hidden 会影响 list-style,即当ul 中的li 的overflow 为hidden的时候,list-style不起作用,不显示前面的点.圈等样式,在ul或l ...
- javascript进阶——分离式DOM脚本编程
编写分离式(unobstrusive)代码意味着对HTML内容的完全分离:数据来自服务器端,javascript代码用来动态化和交互.这种分离的好处是在不同浏览器之间使用是可以完全降级或升级运行,对于 ...