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源码的更多相关文章

  1. 开源项目Telegram源码 Telegram for Android Source

    背景介绍 Telegram 是一款跨平台的即时通信软件,它的客户端是自由及开放源代码软件.用户可以相互交换加密与自毁消息,发送照片.影片等所有类型文件.官方提供手机版.桌面版和网页版等多种平台客户端. ...

  2. 【原】Android热更新开源项目Tinker源码解析系列之三:so热更新

    本系列将从以下三个方面对Tinker进行源码解析: Android热更新开源项目Tinker源码解析系列之一:Dex热更新 Android热更新开源项目Tinker源码解析系列之二:资源文件热更新 A ...

  3. 【原】Android热更新开源项目Tinker源码解析系列之一:Dex热更新

    [原]Android热更新开源项目Tinker源码解析系列之一:Dex热更新 Tinker是微信的第一个开源项目,主要用于安卓应用bug的热修复和功能的迭代. Tinker github地址:http ...

  4. 【原】Android热更新开源项目Tinker源码解析系列之二:资源文件热更新

    上一篇文章介绍了Dex文件的热更新流程,本文将会分析Tinker中对资源文件的热更新流程. 同Dex,资源文件的热更新同样包括三个部分:资源补丁生成,资源补丁合成及资源补丁加载. 本系列将从以下三个方 ...

  5. VS2015 Git 源码管理工具简单入门

    1.VS Git插件 1.1 环境 VS2015+GitLab 1.2 Git操作过程图解 1.3 常见名词解释 拉取(Pull):将远程版本库合并到本地版本库,相当于(Fetch+Meger) 获取 ...

  6. android 在线升级借助开源中国App源码

    android 在线升级借助开源中国App源码 http://www.cnblogs.com/luomingui/p/3949429.html android 在线升级借助开源中国App源码分析如下: ...

  7. 【安卓网络请求开源框架Volley源码解析系列】定制自己的Request请求及Volley框架源码剖析

    通过前面的学习我们已经掌握了Volley的基本用法,没看过的建议大家先去阅读我的博文[安卓网络请求开源框架Volley源码解析系列]初识Volley及其基本用法.如StringRequest用来请求一 ...

  8. 最新git源码下载地址

    1.最新git源码下载地址: https://github.com/git/git/releases https://www.kernel.org/pub/software/scm/git/ 可以手动 ...

  9. [strongswan][autoconf][automake][cento] 在CentOS上编译strongswan git源码时遇到的autoconf问题

    编译strongswan的git源码问题 1. 概述 首先,我们想要通过源码编译strongswan.当满足以下条件时,通常你会遇见此问题: 源码时通过git clone的得来的,而不是官网下载的源码 ...

随机推荐

  1. AIX 环境下减小系统page space空间

    IBM AIX v5.3操作系统环境下减小系统page space空间详细步骤如下 1,创建一个临时的page space空间#mkps -a -n -s 20 rootvg 这里-a参数指定页面空间 ...

  2. iOS MVC, MVVM

    在iOS app里,如果用传统的MVC模式,Model层就是数据,View层就是Storyboard,nib文件或者构建UI的代码,Controller层就是ViewController,负责协调Mo ...

  3. 性能测试常用Oracle语句

    性能测试常用Oracle语句 显示数据库当前的连接数 select count(*) from v$process; 显示数据库最大连接数: select value from v$parameter ...

  4. JQuery实现的模块交换动画效果

    <!doctype html> <html> <head> <meta http-equiv="content-type" content ...

  5. html信息提示框

    1.span <span title="提示信息" data-container="body" data-toggle="inf" d ...

  6. Backbone框架浅析

    Backbone是前端mvc开发模式的框架.它能够让view和model相分离,让代码结构更清晰简答,开发进度加快,维护代码方便.但是,现在出了一种mvvm框架,它是下一代前端mvc开发模式的框架,代 ...

  7. Head First Html and CSS学习笔记之HTML

    初学前端开发,记录下自己的学习笔记. 第一章 认识HTML 1:关于HTML HTML是超文本标记语言(HyperText Markup Language)的缩写,用来建立网页的结构. 它只会根据标记 ...

  8. [原]通过配合ffmpeg.exe获取视频文件时长

    import subprocess import os import time def getTime(flvpath,fid): #file_str = '1.flv' file_str = flv ...

  9. python生成透时图片and 写文字

    import Image from get_png import getpng def transparent(infile): #open png,covert it into 'RGBA mode ...

  10. [知识整理]Java集合(二) - Set

    一.实现Set的几个类 HashSet.LinkedHashSet.TreeSet.ConcurrentSkipListSet.CopyOnWriterArraySet 二.对应底层的数据结构 Has ...