来自: 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. Windows 键盘操作快捷方式积累

    复制.粘贴: CTRL+C 复制被选择的项目到剪贴板 CTRL+V 粘贴剪贴板中的内容到当前位置 CTRL+X 剪切被选择的项目到剪贴板 Alt+ space + E + P CMD 窗口快速粘贴 关 ...

  2. 在Windows下用Mingw 4.5.2编译X264

    1.下载mingw-get-inst-20110530.rar(http://www.baidu.com/link?url=-ixXW6QiuEl8CA1dKudoWCxzcTvxrpQ0nXRBHU ...

  3. RX编程笔记——JavaScript 获取地理位置

    RX编程笔记——JavaScript 获取地理位置 2016-07-05

  4. 简单易用的Rest

    今天碰巧,用到了淘宝的在线IP地址查询的Rest API,它提供接口给用户查询IP地址的归宿地.数据库比较庞大,准确性也比较高.地址为:http://ip.taobao.com/instruction ...

  5. 解决jquery mobile的遇到高版本Chrome一直转圈,页面加载不出来的情况。

    把这么一段代码,加到jquery.mobile.js中后问题解决了. $(document).on('mobileinit',function(){ $.mobile.changePage.defau ...

  6. Android开发中activity切换动画的实现

    (1)我们在MainAcitvity中定义两个textview,用于点击触发切换Activity事件,下面是布局文件代码. <LinearLayout android:layout_width= ...

  7. opengl雾开启

    #include <GL/glut.h> #include <stdio.h> #include <iostream> using namespace std; s ...

  8. 在C#中IEnumerable与IEnumerator

    对于很多刚开始学习C#同学来说经常会遇到IEnumerable这个关键字,enumerate在字典里的解释是列举,枚举,因此可想而知这个关键字肯定是和列举数据有关的操作. public interfa ...

  9. oracle 行转列问题

    select id, name, ),),)) "imp_value", ),), )) "click_value" from (SELECT a.id, a. ...

  10. Extjs 更新数据集Ext.PagingToolbar的start参数重置的处理

    问题:当翻页后,比如当前是第二页,start参数此时是5(初始为0),当切换左侧分类时,我们期望的是从所选分类下明细记录的第一条开始显示,结果发现不是这样,依然是从新数据的第二页开始显示,就是说ext ...