Grand Central Dispach(GCD)

Grand Central Dispach(GCD) 什么是GCD? Grand Central Dispatch(GCD)是异步执行任务的技术之一。一般将应用程序中记述的线程管理用的代码在系统级中实现。开发者只需

利用RunLoop控制线程生命周期

利用RunLoop控制线程生命周期 需求 子线程频繁的做任务,此时如果每次做任务时创建子线程,任务完成销毁子线程,频繁得创建销毁线程对系统的开销

IP地址,MAC地址,计算机连接方式

IP地址,MAC地址,计算机连接方式 计算机之间的通信基础 需要得知对方的 IP地址 最终是根据MAC地址(网卡地址),输送数据到网卡,被网卡接收 如

网络的一些基本概念

网络的一些基本概念 因特网 : 全世界最大的互联网 将全世界所有的计算机连接在一起 一般使用大写I开头的Internet特指因特网 ISP Internet Service Provider, Intern

回溯算法总结

(转)回溯算法入门级详解 + 练习 (查看原文) 回溯算法与深度优先遍历 以下是维基百科中 回溯算法 和 深度优先遍历 的定义。 回溯法 回溯法采用试错的思想,它

网络分层

网络分层 网络互连模型 为了更好的促进互联网的研究和发展,国际标准组织 ISO 在1985年制定了网络互连模型 OSI (Open System Interconnect Reference Model), 具有7层结构 应用层 协议 : FTP,HTTP,SMTP,DNS,DHCP 报文

Advanced Memory Management Programming Guide

Advanced Memory Management Programming Guide (高级内存管理编程指南) 原文地址 Application memory management is the process of allocating memory during your program’s runtime, using it, and freeing it when you are done with it. A well-written program uses as little memory as possible. In Objective-C, it can also be seen as

PointInside:withEvent:

pointInside:withEvent: 苹果官方文档原文地址 Returns a Boolean value indicating whether the receiver contains the specified point. 返回一个布尔值, 表示接收方是否包含指定点. Declaration 1 - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event; Parameters point A point that is in the receiver’s local coordinate

HitTest:withEvent:

hitTest:withEvent: 苹果官方文档原文地址 : hitTest:withEvent: Returns the farthest descendant of the receiver in the view hierarchy (including itself) that contains a specified point. 返回包含指定点的视图层次结构中接收者的最远后代 (包括自身). Declaration 1 - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event; Parameters point