1 OC调用原理
OC 使用的是消息结果而非函数调用。其运行时执行的代码由运行环境决定,只有在运行时才会查找所要执行的方法
2 在类的头文件尽量少引用其他头文件
使用@class 在类的头文件声明
3 多用类型常量,少用#define
static const NSTimeInterval kAnimationDuration = 0.3;
// .h
extern NSString *const EOCLogManagerDidLoginNotification;
// .m
NSString *const EOCLogManagerDidLoginNotification = @"EOCLogManagerDidLoginNotification";
4 枚举
typedef NS_ENUM(NSUInteger,EOCConnectionState) {
EOCConnectionStateDisconnected,
EOCConnectionStateConnecting,
EOCConnectionStateConnected,
};
5 在对象内部尽量直接访问实例变量
_name; // 而非 self.name