摘要:
iOS中使用了很多散列表: allocatedClasses = NXCreateHashTable(NXPtrPrototype, 0, nil); 阅读全文
摘要:
头文件:#include <string.h>memmove() 用来复制内存内容,其原型为: void * memmove(void *dest, const void *src, size_t num);memmove() 与 memcpy() 类似都是用来复制 src 所指的内存内容前 num 阅读全文
摘要:
1. 分类和类定义相同的方法,会不会覆盖类方法: #import "FXPerson.h" @implementation FXPerson - (void)walk{ NSLog(@"person walk"); } @end #import "FXPerson+something.h" @imp 阅读全文