iOS ARC和MRC宏判断 2019-08-25 本文已影响0人 加盐白咖啡 // 条件满足ARC #if __has_feature(objc_arc) NSLog(@"ARC"); #else NSLog(@"MRC"); # endif