###一、ISA结构 struct objc_object { private: isa_t isa; }; union isa_t { Class cls; uintptr_t bits; #if defined(ISA_BITFIELD) // ISA_BITFIELD意为 isa位域 stru ...
分类:
其他好文 时间:
2021-06-02 18:18:32
阅读次数:
0
main #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { @autoreleasepool { NSDictionary* dic =[NSDictionary dictionaryWithObj ...
分类:
其他好文 时间:
2020-07-10 00:02:17
阅读次数:
72
mian #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { @autoreleasepool { // NSRange范围结构体 NSString* str=@"Object-C is a cool ...
分类:
其他好文 时间:
2020-07-09 01:13:34
阅读次数:
77
main #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { @autoreleasepool { NSArray* array=@[@1,@2,@3,@4];//[NSNumber numberWi ...
分类:
其他好文 时间:
2020-07-08 22:59:33
阅读次数:
60
c语言中内存管理存在问题 静态内存分配: 局部变量 栈 全局变量 数据区 动态内存分配 堆 内存分配函数 malloc calloc realloc 内存释放 free 使用原则 用完了释放 问题1. 内存泄漏 ,用完了动态分配的内存就不释放,就产生内存泄漏 解决 :用完malloc 用free 问 ...
分类:
其他好文 时间:
2020-07-04 22:19:07
阅读次数:
72
什么是代理? 1.代理(委托):自己不亲身做,让别人做 2.定义了协议的类可以看作将协议定义的方法代理给了实现这些方法的类 boss h #import <Foundation/Foundation.h> #import "Assisant.h" @interface boss : NSObject ...
分类:
其他好文 时间:
2020-07-03 00:37:52
阅读次数:
79
类别的创建 integer.h @interface integer : NSObject @property int integer; @end integer.m @implementation integer @end 类别 integer+display.h integer+display. ...
分类:
其他好文 时间:
2020-06-29 00:20:44
阅读次数:
61
@autoreleasepool { // insert code here... NSLog(@"Hello, World!"); //c语言中的数组问题 int arr[10]={1,2,3,4,5,6,7,8,9,0}; //c语言的数组只能存同类型的值 //固定大小的数组很难确定大小 int ...
分类:
其他好文 时间:
2020-06-25 23:10:27
阅读次数:
60
property和synthesize关键字 ...
分类:
其他好文 时间:
2018-04-14 00:39:20
阅读次数:
137
成员变量的作用域 OC中成员变量有四种作用域,同时每一种作用域对应着响应的关键字。 "@private:自能在当前类的实现@implementation中访问" "@protected: 可以在当前类以及子类的实现@implementation中直接访问 默认" "@public: 任何地方都可以直 ...
分类:
其他好文 时间:
2018-04-14 00:37:39
阅读次数:
177