├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .AppleDouble 3 | .LSOverride 4 | 5 | # Icon must end with two \r 6 | Icon 7 | 8 | 9 | # Thumbnails 10 | ._* 11 | 12 | # Files that might appear on external disk 13 | .Spotlight-V100 14 | .Trashes 15 | 16 | # Directories potentially created on remote AFP share 17 | .AppleDB 18 | .AppleDesktop 19 | Network Trash Folder 20 | Temporary Items 21 | .apdisk 22 | 23 | build/ 24 | *.pbxuser 25 | !default.pbxuser 26 | *.mode1v3 27 | !default.mode1v3 28 | *.mode2v3 29 | !default.mode2v3 30 | *.perspectivev3 31 | !default.perspectivev3 32 | xcuserdata 33 | *.xccheckout 34 | *.moved-aside 35 | DerivedData 36 | *.xcuserstate -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 学习 Swift 的笔记项目 3 | ========== 4 | 5 | 6 | 7 | - 初探 iOS8 中的 Size Class 8 | 笔记:[初探 iOS8 中的 Size Class](http://blog.callmewhy.com/2014/09/12/learn-ios8-size-class/) 9 | 分支:[learn-ios8-size-class](https://github.com/callmewhy/learn-size-class/tree/learn-ios8-size-class) 10 | 11 | 12 | 13 | - 用 Swift 开发一个 TODO 应用 14 | 笔记:[用 Swift 开发一个 TODO 应用](http://blog.callmewhy.com/2014/09/15/todo-list-in-swift/) 15 | 分支:[todo-list](https://github.com/callmewhy/learn-swift/tree/todo-list) 16 | 17 | 18 | - GCD 学习笔记 19 | 参考笔记:[唐巧的技术博客 - 使用GCD](http://blog.devtang.com/blog/2012/02/22/use-gcd/) 20 | 分支:[learn-gcd](https://github.com/callmewhy/learn-swift/tree/gcd-swift-oc) 21 | 22 | 23 | --------------------------------------------------------------------------------