This file must be compiled with ARC,意思是说:本文件必须在 ARC(ios sdk 5.0 之后的自动内存管理)下才能编译。
#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif
上面判断是否支持arc
如果不支持就报警告 warning
本文件必须用ARC编写