上一页 1 ··· 6 7 8 9 10
usemain.cpp#include#include#include#include#include#include#include#include#include#include#include#include#include"message_type.h"#include"s... Read More
posted @ 2016-03-27 23:13 夜色下的港湾 Views(156) Comments(0) Diggs(0) Edit
servermain.cpp#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#includ... Read More
posted @ 2016-03-27 23:04 夜色下的港湾 Views(107) Comments(0) Diggs(0) Edit
drivermain.cpp#include#include#include#include#include#include#include#include#include#include#include#include#include#include"message_type.h... Read More
posted @ 2016-03-27 22:58 夜色下的港湾 Views(213) Comments(0) Diggs(0) Edit
类别(分类) 1. 为什么要使用分类 问题:需要为已经存在的类添加新的功能,但是又不想为此创建子类。 1)比如,如果需要为NSString添加一个功能,创建NSString类的子类将非常麻烦(因为NSString使用了底层的“类簇”) 2)比如,需要为某个... Read More
posted @ 2016-03-27 22:47 夜色下的港湾 Views(270) Comments(0) Diggs(0) Edit
1 NSRunLoop的实现机制,及在多线程中如何使用 NSRunLoop是IOS消息机制的处理模式 1.NSRunLoop的主要作用:控制NSRunLoop里面线程的执行和休眠,在有事情做的时候使当前NSRunLoop控制的线程工作,没有事情做让当前NSRunLoop的控... Read More
posted @ 2016-03-27 22:35 夜色下的港湾 Views(142) Comments(0) Diggs(0) Edit
1. 代码块 (block)block 类似于c语言的函数指针 但是比函数指针功能更强,是多种高级语言提供的"闭包"2. 代码块的定义代码块的定义和函数指针相似//返回类型为void的block 定义一个block 返回类型不加括号void(^myblock)(NSString*... Read More
posted @ 2016-03-24 22:13 夜色下的港湾 Views(357) Comments(0) Diggs(0) Edit
runtime实现的机制: 运行时机制,runtime库里面包含了跟类、成员变量、方法相关的API,比如获取类里面的所有成员变量,为类动态添加成员变量,动态改变类的方法实现,为类动态添加新的方法等 1. runtime,运行时机制,它是一套C语言库 2. 实际上我们编写的所有OC... Read More
posted @ 2016-03-24 09:40 夜色下的港湾 Views(112) Comments(0) Diggs(0) Edit
// condition.h#ifndef _CONDITION_H_#define _CONDITION_H_#includetypedef struct condition{ pthread_mutex_t pmutex; pthread_cond_t pcond;... Read More
posted @ 2016-03-23 22:14 夜色下的港湾 Views(321) Comments(0) Diggs(0) Edit
//在block里再改变 指针的属性 设置为weak的strong//判断string的值是否为NULL 不为NULL执行需要的代码#define WS(weak_self) _weak typeof(self) weak_self = self//block的防止循环引用的问题... Read More
posted @ 2016-03-23 20:55 夜色下的港湾 Views(96) Comments(0) Diggs(0) Edit
上一页 1 ··· 6 7 8 9 10