Skip to content
This repository has been archived by the owner on Feb 7, 2018. It is now read-only.

Commit

Permalink
sync 20160302
Browse files Browse the repository at this point in the history
  • Loading branch information
conanwhf committed Mar 2, 2016
1 parent 737b37f commit 62f1ebb
Show file tree
Hide file tree
Showing 14 changed files with 980 additions and 917 deletions.
4 changes: 3 additions & 1 deletion 0.0fromApple.md
Expand Up @@ -29,6 +29,7 @@
- [Xcode测试指南][32]
- Run Loops [1][33] [2][34] [3][35]
- [iOS-Developer-Documents-Chinese][36],一个专门翻译官方文档的志愿组织,更新缓慢
- [Apple Pay 编程指南][37]

[1]: http://swift.org/ "swift.org"
[2]: https://github.com/apple/swift "swift"
Expand Down Expand Up @@ -65,4 +66,5 @@
[33]: http://pandara.xyz/2015/12/17/Run%20Loops/ "Run Loops"
[34]: http://pandara.xyz/2015/12/18/runloop2/
[35]: http://pandara.xyz/2015/12/21/run_loop_3/
[36]: https://github.com/iOS-Developer-Documents-Chinese/iOS-Developer-Documents-Chinese
[36]: https://github.com/iOS-Developer-Documents-Chinese/iOS-Developer-Documents-Chinese
[37]: http://wiki.jikexueyuan.com/project/apple-pay "Apple Pay 编程指南"
448 changes: 233 additions & 215 deletions 1.0other.md

Large diffs are not rendered by default.

70 changes: 36 additions & 34 deletions 1.1swift.md
Expand Up @@ -93,40 +93,41 @@
- [面向协议的MVVM][82]
- [使用 guard 的正确姿势][83]
- [如何处理 Swift 中的异步错误][84]
- [Swift编程的15个技巧][85]

## 其他系列主题
### Secret of Swift Performance(翻译版,更新中)
1. Part 1 - [Measure][85]
2. Part 2 - [Look under the hood][86]
1. Part 1 - [Measure][86]
2. Part 2 - [Look under the hood][87]

### Swift编程思想(翻译,更新中)
1. [拯救小马][87](可选型optionals)
2. [数组的 Map 方法][88]
3. [结构体和类][89]
1. [map all the things!][90]
1. [拯救小马][88](可选型optionals)
2. [数组的 Map 方法][89]
3. [结构体和类][90]
1. [map all the things!][91]

### 写给初学者的Swift教程(翻译版,更新中)
1. [写给初学者的 Swift 教程 Part 1][91]
1. [写给初学者的 Swift 教程 Part 1][92]

### SwiftGG - 类型高级用法及实践
- [Swift 中枚举高级用法及实践][92]
- [Swift 元组高级用法和最佳实践][93]
- [Swift 中集合与字典的角逐][94]
- [Swift 中枚举高级用法及实践][93]
- [Swift 元组高级用法和最佳实践][94]
- [Swift 中集合与字典的角逐][95]

### Swift Source Code系列
这个系列是[星夜暮晨][95]学习 Swift 源码的心得和记录
- [Questing for Swift Source Code - 布尔值][96]
- [Questing for Swift Source Code - 整数类型][97]
这个系列是[星夜暮晨][96]学习 Swift 源码的心得和记录
- [Questing for Swift Source Code - 布尔值][97]
- [Questing for Swift Source Code - 整数类型][98]

### [atswift-2016-resources][98]
### [atswift-2016-resources][99]
2016中国Swift开发者大会的所有源文件,包括 讲师演讲用的keynote或pdf文件,讲师现场直播的工程文件,以及可能的根据讲师演讲的示例写成的playground文件。

### Swift里你可能不知道的事儿
- [(1)-Reference cycle引起的内存泄漏][99]
- [(2)——处理对象reference cycle的三种方式][100]
- [(1)-Reference cycle引起的内存泄漏][100]
- [(2)——处理对象reference cycle的三种方式][101]

### Swift烧脑体操-by 唐巧
- [(一) - Optional 的嵌套][101]
- [(一) - Optional 的嵌套][102]

[1]: http://swiftcafe.io/ "Swift Cafe"
[2]: http://onevcat.com/2015/01/swift-pointer/
Expand Down Expand Up @@ -212,20 +213,21 @@
[82]: http://liuduo.me/2015/12/13/pomvvm/ "面向协议的MVVM"
[83]: http://swift.gg/2016/02/14/swift-guard-radix/ "使用 guard 的正确姿势"
[84]: http://swift.gg/2016/02/16/async-errors/ "如何处理 Swift 中的异步错误"
[85]: http://southpeak.github.io/blog/2015/11/05/secret-of-swift-performance-part-1/
[86]: http://southpeak.github.io/blog/2015/11/05/secret-of-swift-performance-part-2/
[87]: http://swift.gg/2015/09/29/thinking-in-swift-1/ "Swift 编程思想,第一部分:拯救小马"
[88]: http://swift.gg/2015/10/09/thinking-in-swift-2/ "Swift 编程思想,第二部分:数组的 Map 方法"
[89]: http://alisoftware.github.io/swift/2015/10/03/thinking-in-swift-3/ "Swift编程思想第三部分:结构体和类"
[90]: http://swift.gg/2015/10/22/thinking-in-swift-4/ "Swift 编程思想 Part 4:map all the things!"
[91]: http://swift.gg/2015/11/13/swift-tutorial-for-beginners-part-1/ "写给初学者的 Swift 教程 Part 1"
[92]: http://swift.gg/2015/11/20/advanced-practical-enum-examples/ "Swift 中枚举高级用法及实践"
[93]: http://swift.gg/2015/10/10/tuples-swift-advanced-usage-best-practices/ "Swift 元组高级用法和最佳实践"
[94]: http://swift.gg/2016/01/20/sets-vs-dictionaries-smackdown-in-swiftlang/ "Swift 中集合与字典的角逐"
[95]: http://www.jianshu.com/users/ef1058d2d851 "星夜暮晨"
[96]: http://www.jianshu.com/p/217510b270f1 "Questing for Swift Source Code - 布尔值"
[97]: http://www.jianshu.com/p/ae67b4d37159 "Questing for Swift Source Code - 整数类型"
[98]: https://github.com/atConf/atswift-2016-resources "atswift-2016-resources"
[99]: http://segmentfault.com/a/1190000004331260 "Swift里你可能不知道的事儿(1)-Reference cycle引起的内存泄漏"
[100]: http://segmentfault.com/a/1190000004345727 "Swift里你可能不知道的事儿(2)——处理对象reference cycle的三种方式"
[101]: http://www.infoq.com/cn/articles/swift-brain-gym-optional
[85]: http://geek.csdn.net/news/detail/58593
[86]: http://southpeak.github.io/blog/2015/11/05/secret-of-swift-performance-part-1/
[87]: http://southpeak.github.io/blog/2015/11/05/secret-of-swift-performance-part-2/
[88]: http://swift.gg/2015/09/29/thinking-in-swift-1/ "Swift 编程思想,第一部分:拯救小马"
[89]: http://swift.gg/2015/10/09/thinking-in-swift-2/ "Swift 编程思想,第二部分:数组的 Map 方法"
[90]: http://alisoftware.github.io/swift/2015/10/03/thinking-in-swift-3/ "Swift编程思想第三部分:结构体和类"
[91]: http://swift.gg/2015/10/22/thinking-in-swift-4/ "Swift 编程思想 Part 4:map all the things!"
[92]: http://swift.gg/2015/11/13/swift-tutorial-for-beginners-part-1/ "写给初学者的 Swift 教程 Part 1"
[93]: http://swift.gg/2015/11/20/advanced-practical-enum-examples/ "Swift 中枚举高级用法及实践"
[94]: http://swift.gg/2015/10/10/tuples-swift-advanced-usage-best-practices/ "Swift 元组高级用法和最佳实践"
[95]: http://swift.gg/2016/01/20/sets-vs-dictionaries-smackdown-in-swiftlang/ "Swift 中集合与字典的角逐"
[96]: http://www.jianshu.com/users/ef1058d2d851 "星夜暮晨"
[97]: http://www.jianshu.com/p/217510b270f1 "Questing for Swift Source Code - 布尔值"
[98]: http://www.jianshu.com/p/ae67b4d37159 "Questing for Swift Source Code - 整数类型"
[99]: https://github.com/atConf/atswift-2016-resources "atswift-2016-resources"
[100]: http://segmentfault.com/a/1190000004331260 "Swift里你可能不知道的事儿(1)-Reference cycle引起的内存泄漏"
[101]: http://segmentfault.com/a/1190000004345727 "Swift里你可能不知道的事儿(2)——处理对象reference cycle的三种方式"
[102]: http://www.infoq.com/cn/articles/swift-brain-gym-optional

0 comments on commit 62f1ebb

Please sign in to comment.