Objc基础学习记录2

时间:2022-09-09 00:09:02

1.[类 方法名]; //类方法,-静态成员函数,

  + (void)fun;

2.[对象名 方法名]; //实例方法, -非静态成员函数,

  - (void) fun;

3.带有冒号必须要有参数;

4.@property type name;  //type 类型,int,float等 name是方法名字

@synthesize property_1;//不需要类型;

5.@class XYPoint;

  相当于#import "XYPoint.h" //但是牵着只是引用了方法,后者什么都拿过来了,前者更高效.