iOS Programming GitHub

我把学习《iOS编程(第4版)》的相关代码放在了GitHub上:

https://github.com/palanceli/iOSProgramming

学了一段时间之后,当要用到某个知识点,需要回过头再看的时候,找到相关的章节太困难了。所以我把所有的章节都放在了同一个APP里面,需要用的时候,在这个APP里直接找就行了。

内容包含每个章节中的例程以及后面的作业,但我并不是完全照抄了书上的代码,有的地方我觉得另一个写法更方便;有的地方因为xcode版本的差异,需要做一些变化;还有的地方我把几个章节合并在一起来做了。不过书中讲到的关键点都会联系到,并且力求达到和书中的代码一样的效果。此外,我还把每个章节中遇到的问题以及技术点总结放到了每个章节页面的右上角,点击就能查看。我在最后插入了一章,记录在练习过程中想到或遇到的问题。有些问题来不及追查答案,先暂时备忘。最终我希望在学习这本书的过程中遇到的每个问题都能找到满意的解答,并且我会把答案写到问题的后面。

APP还没有完全做完,因为书还没有读完。我计划十一期间能够完结,这些天我还会持续更新。

时间: 2024-10-16 00:32:34

iOS Programming GitHub的相关文章

iOS Programming Views :Redrawing and UIScrollView

iOS Programming Views :Redrawing and UIScrollView? 1.1 event? You are going to see how views are redrawn in response to an event. 你将看到view如何响应event的. You declared properties in header files. You can also declare properties in class extensions. 你可以声明属

iOS Programming Recipe 6: Creating a custom UIView using a Nib

iOS Programming Recipe 6: Creating a custom UIView using a Nib JANUARY 7, 2013 BY MIKETT 12 COMMENTS Creating a custom UIView using a Nib Assumptions You are familiar with creating UIView subclasses, and instantiating UIView's both from a Nib file or

iOS Programming Dynamic Type 1

iOS Programming Dynamic Type 1? Dynamic Type is a technology introduced in iOS 7 that helps realize this goal by providing specifically designed text styles that are optimized for legibility. Dynamic Type 是从iOS7引入的技术来帮助实现这个目标通过提供专门设计的text styles 为了优化

iOS Programming Subclassing UITableViewCell

iOS Programming Subclassing UITableViewCell? 1.Creating BNRItemCell UITableViewCell is a UIView subclass. UITableViewCell是UIView的子类. When subclassing UIView (or any of its subclasses), you often override its drawRect: method to customize the view's a

iOS Programming The Big Nerd Ranch Guide (4th Edition)

Book Description Updated and expanded to cover iOS 7 and Xcode 5, iOS Programming: The Big Nerd Ranch Guide leads you through the essential concepts, tools, and techniques for developing iOS applications. After completing this book, you will have the

iOS Programming State Restoration 状态存储

iOS Programming State Restoration?状态存储 If iOS ever needs more memory and your application is in the background, Apple might kill it to return memory to the system. 如果iOS 需要更多的memory,你的应用在后台,apple 可能杀死它来得到更多的内存给系统. This should be transparent to your u

iOS programming Code Snippet Library

iOS programming? Code Snippet Library? The freebie code comes from the code snippet library. 代码来自code snippet library. Notice that there are a number of code snippets available 有许多code snippets available . Click the Edit button on the code snippet de

iOS Programming UIWebView 2

iOS Programming? UIWebView 1 Instances of UIWebView render web content. UIWebView可以显示web content. In fact, the Safari application on your device uses a UIWebView to render its web content. 事实上,Safari application 用了一个UIWebView 显示它的web content. In this

iOS Programming Introduction to Auto Layout 自动布局

iOS Programming Introduction to Auto Layout ? 自动布局 A single application that runs natively on both the iPad and the iPhone is called a universal application. 一个原生的能运行在iPad 和iPhone 的应用叫做universal application? Then select the Homepwner target in the pr