摘要: NSThread 的创建和使用1) 实例化创建,需要主动开启线程//创建线程,需要手动启动/** selector:自定义方法* object:给函数传递的参数(例如:下载方法中网址)*/NSThread *thread = [[NSThread alloc] i... 阅读全文
posted @ 2016-06-24 22:18 zsper 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 进程:进程定义: (1)进程是程序的一次执行过程。 (2)进程可定义为一个数据结构及能在其上进行操作的一个程序。 (3)进程是程序在一个数据集合上运行的过程,是系统进行资源分配和调度的一个独立单位。进程的特点:(1)动态性 (2)并发性 (3)独立性 (4)异步... 阅读全文
posted @ 2016-06-24 21:37 zsper 阅读(129) 评论(0) 推荐(0) 编辑
摘要: (1) Remove Duplicates from Sorted List I 题目意思: 删除重复节点,但是保留第一个重复的结点. For example, Given 1->2->3->3->4->4->5, return 1->2->3->4->5. Give... 阅读全文
posted @ 2016-06-22 21:17 zsper 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 在IOS开发中,最常用的UI控件,应该就是UITableView了,在这里简单的对其进行介绍. UITableView有数据源方法和代理方法,数据源方法是将模型数据显示到视图上,而代理方法是对TableView进行操作. 初始化方法://UITableViewStyl... 阅读全文
posted @ 2016-06-20 23:09 zsper 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 自定义类如果需要归档的话,需要遵守NSCoding协议,并实现两个方法:- (void)encodeWithCoder:(NSCoder *)aCoder;- (nullable instancetype)initWithCoder:(NSCoder *)aDecod... 阅读全文
posted @ 2016-06-20 21:19 zsper 阅读(89) 评论(0) 推荐(0) 编辑
摘要: iso常用序列化方法: (1) XML 属性列表 (plist) 归档 (2) Preference (偏好设置) (3) NSKeyedArchiver 归档 (NSCoding) (4) SQLite3 (5) CoreDate偏好设置: 用于存储用户名与密码,以... 阅读全文
posted @ 2016-06-20 20:50 zsper 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Implement pow(double x, int n). – leetcode 自定义实现pow函数. 注意点: (1) double类型的值,不能用 == 来判断是否相等,应该用一定的误差值来判断; (2) 特殊情况的处理: 1) x 为 0 同时 ... 阅读全文
posted @ 2016-06-17 23:32 zsper 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Two Sum – leetcode Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may a... 阅读全文
posted @ 2016-06-13 17:19 zsper 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 3 Sum – leetcode Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in ... 阅读全文
posted @ 2016-06-13 17:11 zsper 阅读(163) 评论(0) 推荐(0) 编辑
摘要: String to Integer (atoi) – leetcode Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input case... 阅读全文
posted @ 2016-06-12 16:51 zsper 阅读(103) 评论(0) 推荐(0) 编辑