标签: ios objective-c automatic-ref-counting xcode5
我有一个正在构建并抛出此警告的库,因为ARC已关闭。但是项目本身是启用ARC的。忽视这个警告会有什么影响?
- (void)dealloc { if (_framesetter) CFRelease(_framesetter); if (_highlightFramesetter) CFRelease(_highlightFramesetter); }