Day1 - 115Line
宏NS_DESIGNATED_INITIALIZER
- 标记所在方法为Designated构造方法
- 其他构造方法必须最终调用此方法
- 此方法必须调用父类的Designated构造方法
关键字nullable / nonnull / _Nullable / _Nonnull
- nullable/nonnull 用于属性声明, 返回类型, 参数类型, 在具体类型之前
- _Nullable/_Nonnull用于单独的变量申明, 在具体类型后面
通常默认nononull行为, 则使用NS_ASSUME_NONNULL_BEGIN和NS_ASSUME_NONNULL_END宏进行整体修饰.
Block的参数申明
(returnType/void (�^)(type name, type3 name2...)) block
宏FOUNDATION_EXPORT的使用
- 用于通知名的全局申明
- 在64位架构中表示extern关键字
Day2 - 215Line
正确使用KVO添加和移除监听的属性
NSStringFromSelector利用属性的get方法获得需要监听的属性名,避免手动输入属性名字符串错误问题.
[task addObserver:self forKeyPath:NSStringFromSelector(@selector(countOfBytesExpectedToReceive)) options:NSKeyValueObservingOptionNew context:NULL];
[task removeObserver:self forKeyPath:NSStringFromSelector(@selector(countOfBytesExpectedToReceive))];
Block 的typedef申明
typedef returnType (^BlockName)(type name, type2 name2,..)
typedef void (^AFURLSessionTaskCompletionHandler)(NSURLResponse *response, id responseObject, NSError *error);
解决Block中的强引用
在持有block内部对外边的已经持有的属性变量进行使用时,block会捕获该变量,也会强引用它,形成循环引用,想要避免就要先在外部进行weak引用该变量,然后在block内进行strong引用weak变量.
__weak __typeof__(task) weakTask = task;
[self.uploadProgress setCancellationHandler:^{
__typeof__(weakTask) strongTask = weakTask;
[strongTask cancel];
}];
Day3 -
利用Objective-C消息的动态转发实现MethodSwizzle
- 需要引入C库
<objc/runtime.h>
- 若是Objective-C版本则在
load
方法进行Method Swizzle操作,若是Swift在initialize
方法中进行. - 方法实现对象Method利用
class_getInstanceMethod / class_getClassMethod
获得,先使用class_addMethod()
将自定义的方法添加到当前类,返回bool表示是否添加成功.在成功添加的前提下进行交换原方法实现的交换method_exchangeImplementations
.
static inline void af_swizzleSelector(Class theClass, SEL originalSelector, SEL swizzledSelector) {
Method originalMethod = class_getInstanceMethod(theClass, originalSelector);
Method swizzledMethod = class_getInstanceMethod(theClass, swizzledSelector);
method_exchangeImplementations(originalMethod, swizzledMethod);
}
static inline BOOL af_addMethod(Class theClass, SEL selector, Method method) {
return class_addMethod(theClass, selector, method_getImplementation(method), method_getTypeEncoding(method));
}
+ (void)swizzleResumeAndSuspendMethodForClass:(Class)theClass {
Method afResumeMethod = class_getInstanceMethod(self, @selector(af_resume));
Method afSuspendMethod = class_getInstanceMethod(self, @selector(af_suspend));
if (af_addMethod(theClass, @selector(af_resume), afResumeMethod)) {
af_swizzleSelector(theClass, @selector(resume), @selector(af_resume));
}
if (af_addMethod(theClass, @selector(af_suspend), afSuspendMethod)) {
af_swizzleSelector(theClass, @selector(suspend), @selector(af_suspend));
}
}
断言NSAssert的使用
- 若条件Bool为假,表示断言失败,程序终止
- Assert系列函数只在开发环境中有效,在发布环境中会被编译器忽略
- 尽可能使用Assert函数提高程序的安全性
- (void)af_resume {
NSAssert([self respondsToSelector:@selector(state)], @"Does not respond to state");
NSURLSessionTaskState state = [self state];
[self af_resume];
if (state != NSURLSessionTaskStateRunning) {
[[NSNotificationCenter defaultCenter] postNotificationName:AFNSURLSessionTaskDidResumeNotification object:self];
}
}
使用关键字__block修饰变量的目的
Block和__block变量都是结构体变量, __block拓展
- 让修饰后的外部的局部变量能在Block中被修改
- 能在Block中控制修饰后的变量的生命周期,避免循环引用
网友评论