OC基础笔记

pragma mark 在xcode的使用
OC基础笔记_第1张图片
pragma mark-会在之前加条线
OC基础笔记_第2张图片

1.在声明里面默认是potected 在实现里面是私有的
2.权限遵循追随原则
@protect 
int _age;
float _change;也是protect

@property 和@synthesize 自动生成setter 和getter的实现

你可能感兴趣的:(xcode)