数据结构(树与二叉树基本概念)

前面的文章主要关于iOS开发的,这篇文章我们来讨论一下数据结构中十分重要的二叉树及其基本概念。

»
Author's profile picture YouYinan on dataStructure

iOS ReactiveCocoa详解

上篇文章介绍了iOS开发中的MVVM开发框架,这篇中我们将主要介绍iOS开发中很流行的RactiveCocoa框架,同时也学习一下 Objective-C 语言。

»
Author's profile picture YouYinan on iOS

MVVM介绍(Model-View-ViewModel)

Swift中使用KVC和KVO的类都必须必须继承自NSObject

»
Author's profile picture YouYinan on iOS

UIViewController的生命周期及iOS程序执行顺序

上文章篇介绍了iOS应用程序的消息处理机制,本篇主要介绍iOS开发中的视图控制器的生命周期,这是iOS开发中的重点。

»
Author's profile picture YouYinan on iOS

iOS NSNotificationCenter 详解

上文章篇介绍了iOS应用程序的RunTime与RunLoop,本篇主要介绍iOS开发中消息处理机制NSNotification。

»
Author's profile picture YouYinan on iOS

iOS开发中的RunLoop,RunTime

上文章篇介绍了iOS应用程序的生命周期,本篇主要介绍iOS开发中的RunLoop与RunTime。

»
Author's profile picture YouYinan on iOS

iOS应用程序生命周期(前后台切换,应用的各种状态)详解

上文章篇介绍了iOS的多线程,本篇主要介绍iOS应用程序的生命周期。

»
Author's profile picture YouYinan on iOS

iOS 多线程 (三) NSOperation

上两文章篇介绍了NSThread以及GCD的使用,本篇介绍iOS多线程编程中的最后一种方法NSOperation。

»
Author's profile picture YouYinan on iOS

iOS 多线程 (二) GCD

上一篇介绍了NSThread的使用,本篇继续介绍iOS多线程之GCD,GCD为纯C语言API,是在iOS编程中最常使用的API之一。

»
Author's profile picture YouYinan on iOS

iOS 多线程 (一) NSThread

本文主要介绍iOS多线程中的NSThread,此为面试常问问题。

»
Author's profile picture YouYinan on iOS

iOS多线程总结

本文主要介绍iOS中多线程的基本概念,此为笔试、面试常考问题,是iOS总的重要概念。

»
Author's profile picture YouYinan on iOS

Swift内存管理(ARC-自动引用计数)

本文主要介绍iOS中的Swift内存管理(ARC-自动引用计数),注意其余Objective-C的比较。

»
Author's profile picture YouYinan on Swift

模式匹配,正则表达式

本文主要介绍Swift语言的模式匹配,以及正则表达式

»
Author's profile picture YouYinan on Swift

Swift错误处理(ErrorType)

本文主要介绍 Swift2.0 语言的新特性 --错误处理机制。错误处理是响应错误以及从错误中返回的过程。swift提供第一类错误支持,包括在运行时抛出,捕获,传送和控 制可回收错误。

»
Author's profile picture YouYinan on Swift

Swift新特性选项集合(OptionSet)详解

本篇中主要介绍Swift 2.0语言的新特性 -- Option Set,详细介绍其基本概念及代码示例。

»
Author's profile picture YouYinan on Swift