更新 cocoapods后出现的问题

1.'Reachability.h' file not found with include; use "quotes" instead

更新 pods 之后,发觉一直提示要把#import 改成#import“AFN” ,
然后折腾了一会,发现可能是路径问题。
然后把#import 改为#import

2.Use of undeclared identifier '_executing' (在SDWebImage中)

Use of undeclared identifier '_executing';
Use of undeclared identifier '_finished';

解决方法:

在SDWebImageDownloaderOperation类的实现中(@implementation SDWebImageDownloaderOperation{...}下面)添加:
@synthesize executing = _executing ;
@synthesize finished = _finished;


示例

你可能感兴趣的:(更新 cocoapods后出现的问题)