收藏的 500多个开源的Git源码
由dkhamsing发起的Open-Source iOS Apps收集了各种开源的iOS App,并进行了详细的分类,比如游戏、社交、健康、键盘、定位、多媒体、新闻、办公、安全以及小工具类等。截至目前,项目已收集了502款开源iOS应用,收获了7967+个Star,并吸引了109位Contributor的参与。
在此,笔者摘取部分与开发者密切相关的应用与其GitHub地址。欲阅览全部应用,可直接点击链接查阅「Open-Source iOS Apps」的README。
Developer
AppLove:https://github.com/snowpunch/AppLove
AppSlate:https://github.com/Taehan-Kim/AppSlate
Bequest:https://github.com/splinesoft/Bequest
Blink:https://github.com/blinksh/blink
Charter:https://github.com/matthewpalmer/Charter
wat:https://github.com/pj4533/wat
GitHub
CodeHub:https://github.com/thedillonb/CodeHub
GitBucket:https://github.com/leichunfeng/MVVMReactiveCocoa
Github-Swift:https://github.com/acmacalister/Github-Swift
Monkey:https://github.com/coderyi/Monkey
MrCode:https://github.com/haolloyin/MrCode
OctoPodium:https://github.com/nunogoncalves/iOS-OctoPodium
SwiftHub:https://github.com/sahandnayebaziz/StateView-Samples-SwiftHub
Ionic
Minds Mobile App:https://github.com/Minds/mobile
Vegan Lists UK:https://github.com/dsgriffin/vegan-lists-uk
Parse
2CITY:https://github.com/2city/2CITY-iOS
Anypic in Objective-C:https://github.com/ParsePlatform/Anypic
Anypic in Swift:https://github.com/kwkhaw/SwiftAnyPic
AnyWall:https://github.com/ParsePlatform/AnyWall
how-much:https://github.com/dkhamsing/how-much
iBeaconTasks:https://github.com/TomekB/iBeaconTasks
React Native
2048(App by Facebook):https://github.com/facebook/react-native/tree/master/Examples/2048
allyoop:https://github.com/wwayne/react-native-nba-app
Around Me:https://github.com/bgryszko/react-native-example
Assemblies:https://github.com/buildreactnative/assemblies
ReactiveCocoa
BrewMobile:https://github.com/brewfactory/BrewMobile
C-41:https://github.com/ashfurrow/C-41
GroceryList:https://github.com/jspahrsummers/GroceryList
HausClock:https://github.com/nottombrown/HausClock
RxSwift
Count It:https://github.com/PiXeL16/CountItApp
GitHub API Client:https://github.com/tailec/boilerplate
Kiosk:https://github.com/artsy/eidolon
收藏的 500多个开源的Git源码的更多相关文章
- 开源项目Telegram源码 Telegram for Android Source
背景介绍 Telegram 是一款跨平台的即时通信软件,它的客户端是自由及开放源代码软件.用户可以相互交换加密与自毁消息,发送照片.影片等所有类型文件.官方提供手机版.桌面版和网页版等多种平台客户端. ...
- 【原】Android热更新开源项目Tinker源码解析系列之三:so热更新
本系列将从以下三个方面对Tinker进行源码解析: Android热更新开源项目Tinker源码解析系列之一:Dex热更新 Android热更新开源项目Tinker源码解析系列之二:资源文件热更新 A ...
- 【原】Android热更新开源项目Tinker源码解析系列之一:Dex热更新
[原]Android热更新开源项目Tinker源码解析系列之一:Dex热更新 Tinker是微信的第一个开源项目,主要用于安卓应用bug的热修复和功能的迭代. Tinker github地址:http ...
- 【原】Android热更新开源项目Tinker源码解析系列之二:资源文件热更新
上一篇文章介绍了Dex文件的热更新流程,本文将会分析Tinker中对资源文件的热更新流程. 同Dex,资源文件的热更新同样包括三个部分:资源补丁生成,资源补丁合成及资源补丁加载. 本系列将从以下三个方 ...
- VS2015 Git 源码管理工具简单入门
1.VS Git插件 1.1 环境 VS2015+GitLab 1.2 Git操作过程图解 1.3 常见名词解释 拉取(Pull):将远程版本库合并到本地版本库,相当于(Fetch+Meger) 获取 ...
- android 在线升级借助开源中国App源码
android 在线升级借助开源中国App源码 http://www.cnblogs.com/luomingui/p/3949429.html android 在线升级借助开源中国App源码分析如下: ...
- 【安卓网络请求开源框架Volley源码解析系列】定制自己的Request请求及Volley框架源码剖析
通过前面的学习我们已经掌握了Volley的基本用法,没看过的建议大家先去阅读我的博文[安卓网络请求开源框架Volley源码解析系列]初识Volley及其基本用法.如StringRequest用来请求一 ...
- 最新git源码下载地址
1.最新git源码下载地址: https://github.com/git/git/releases https://www.kernel.org/pub/software/scm/git/ 可以手动 ...
- [strongswan][autoconf][automake][cento] 在CentOS上编译strongswan git源码时遇到的autoconf问题
编译strongswan的git源码问题 1. 概述 首先,我们想要通过源码编译strongswan.当满足以下条件时,通常你会遇见此问题: 源码时通过git clone的得来的,而不是官网下载的源码 ...
随机推荐
- log4net的各种Appender配置示例
Apache log4net™ Config Examples Overview This document presents example configurations for the built ...
- python基础知识7——迭代器,生成器,装饰器
迭代器 1.迭代器 迭代器是访问集合元素的一种方式.迭代器对象从集合的第一个元素开始访问,直到所有的元素被访问完结束.迭代器只能往前不会后退,不过这也没什么,因为人们很少在迭代途中往后退.另外,迭代器 ...
- Math类中的BigDecimal
如果我们编译运行下面这个程序会看到什么? public class Test { public static void main(String args[]) { ...
- 1全志 A20 camera移植
转自 http://www.right.com.cn/forum/thread-146260-1-1.html 在Android4.0升级后,突然发现大量平台对Camera的支持均非常不好.要么C ...
- 几个opencv 的iOS的编译问题解决
一个iOS项目需要用到opencv,而且要支持arm64的,以前有个demo的,只支持32位的.到官网下载了最新支持64位库,结果编译无法通过. google了好久也没法解决,后来问了一个同事,找出原 ...
- Linux内核中断学习
1.内核中断概述 (1)在OS环境下编写中断处理函数与之前在裸机中编写中断处理函数的方式是不一样的,在Linux内核中提供了一套用来管理硬件中断资源的软件体系架构. (2)在操作系统中,中断号与gpi ...
- Head First Html and CSS学习笔记之CSS
第七章 CSS入门 元素的许多属性都可以设置样式,太多了,记不住,可以参考<CSS Pocket Reference>. 外部样式表,<link type = "text/ ...
- oracle、mysql新增字段,字段存在则不处理
oracle: 表名:CHANNEL_TRADE_DETAIL列名:exchange_code declare v_rowcount integer; begin select count(*) in ...
- mysql的约束类型
1.主键约束 2.非空约束 3.唯一性约束 4.外键约束 5.默认值约束
- 书单.md
0823 John Hoskin, An Ilustrated History of Thailand.Asia Books Co., Ltd.2015 0729 Gerald Graff, Cath ...