来自: 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

自定义 Alert、ActionSheet

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常用 库的更多相关文章

  1. 大型项目 Gradle 的常用库和版本管理[转]

    http://www.tuicool.com/articles/vqQZBrm 大型项目 Gradle 的常用库和版本管理 时间 2016-03-15 06:44:00  Mystra 原文  htt ...

  2. iPhone开发 - 常用库

    iPhone开发 - 常用库 这里总结了iPhone开发者开发过程中可能需要的一些资源 如何用Facebook graphic api上传视频: http://developers.facebook. ...

  3. Linux 使用 github 常用命令

    Linux 使用 github  常用命令 今天整理一下常用的 github 命令,自己只是一个编程小白,有些地方可能做的不是很好,仅仅用作自己的学习使用. 创建一个文件夹用于存放github仓库 m ...

  4. python 库安装方法及常用库

    python 库安装方法及常用库 python库安装方法: 方法一:setpu.py 1.下载库压缩包,解压,记录下路径:*:/**/……/ 2.运行cmd,切换到*:/**/……/目录下 3.运行s ...

  5. github常用的git命令

    添加已有项目到github: touch README.md //新建说明文件 git init //在当前项目目录中生成本地git管理,并建立一个隐藏.git目录 git add . //添加当前目 ...

  6. Python扫描器-常用库-Request

    1.常用库-Request 1.1. 介绍 #安装:pip3 install requests #各种请求方式:常用的就是requests.get()和requests.post() >> ...

  7. Python的常用库

    读者您好.今天我将介绍20个属于我常用工具的Python库,我相信你看完之后也会觉得离不开它们.他们是: Requests.Kenneth Reitz写的最富盛名的http库.每个Python程序员都 ...

  8. Git与GitHub常用操作

    --------------------------基本操作--------------------------clone 拷贝远程仓库commit 本地提交push 远程提交pull 更新本地--- ...

  9. Github优质库分享-01算法小抄 基于LeetCode

    Github 优质库分享-01 算法小抄 该库总共 60 多篇原创文章,都是基于 LeetCode 的题目,涵盖了所有题型和技巧,而且一定要做到举一反三,通俗易懂,绝不是简单的代码堆砌. 目前 sta ...

随机推荐

  1. 关于WPF中Popup控件的小记

    在wpf开发中,常需要在鼠标位置处弹出一个“提示框”(在此就以“提示框”代替吧),通过“提示框”进行信息提示或者数据操作,如果仅仅是提示作用,使用ToolTip控件已经足够,但是有些是需要在弹出的框中 ...

  2. json 筛选数据 $.grep过滤数据

    var data = { status: "ok", image_size_list: [ { image_size_id: "22", ad_class: & ...

  3. ORA-24010 SMG-3000

    参考:http://t.askmaclean.com/thread-528-1-1.html 运行脚本的时候一定要清楚脚本做了什么操作,注意看清脚本的报错. conn / as sysdba@?/rd ...

  4. Node.js和MongoDB - MongoJS入门

    第一次尝试翻译外国牛人的博文,希望大家喜欢. 本文源码详见:https://github.com/njaulj/mongojs 一点都不夸大的说,近年来node.js和mongodb的确是大放异彩,在 ...

  5. Python 知识点

    1. generator #g is a generator and g is iterable g = (x*x for x in range(5)) for n in g: print(n) # ...

  6. iOS 日历类(NSCalendar)

    对于时间的操作在开发中很常见,但有时候我们需要获取到一年后的时间,或者一周后的时间.靠通过秒数计算是不行的.那就牵扯到另外一个日历类(NSCalendar).下面先简单看一下 NSDate let d ...

  7. delphi xe5 android listbox的 TMetropolisUIListBoxItem

    listbox实现以下效果: \ 关键代码,采用数据集的方式 type PpatientData=^RpatientData; RpatientData= record patient_id:stri ...

  8. HTML5-canvas实例:刮刮乐游戏

    实现方法: (1)利用canvas画布,fillRect()描绘出一个矩形(不是透明),定位盖在某个标签如div上面(这个标签写着中奖的信息) (2)globalCompositeOperation ...

  9. Matlab实现K-Means聚类算法

    人生如戏!!!! 一.理论准备 聚类算法,不是分类算法.分类算法是给一个数据,然后判断这个数据属于已分好的类中的具体哪一类.聚类算法是给一大堆原始数据,然后通过算法将其中具有相似特征的数据聚为一类. ...

  10. SQL Union和SQL Union All用法

    SQL UNION 操作符 UNION 操作符用于合并两个或多个 SELECT 语句的结果集. 请注意,UNION 内部的 SELECT 语句必须拥有相同数量的列.列也必须拥有相似的数据类型.同时,每 ...