- 不带参数
//获取底部安全区域高度(主要针对iPhoneX等设备)
//safeAreaInsets 该方法iOS 11之后新加入的接口
#define BottomSaveHeight [[[UIApplication sharedApplication] delegate] window].safeAreaInsets.bottom
- 带参数
// 弱引用自身 block中调用自身需要弱引用避免循环引用
#define Weakself(weakSelf) __weak typeof(&*self) weakSelf = self;
// LLVM老版编译器typeof(self)会报错,所以这样处理 typeof(&*self),现在不会了
#define Weakself(weakSelf) __weak typeof(self) weakSelf = self;
======================== 更新于2019年3月4日 =======================