반응형
__has_feature() 를 이용해서 ARC 사용 여부를 알 수 있다.
#if __has_feature(objc_arc)
NSLog(@"with ARC");
#else
NSLog(@"without ARC");
#endif
출처 : http://lists.apple.com/archives/xcode-users/2011/Aug/msg00252.html
반응형
'code snippet' 카테고리의 다른 글
[PhoneGap] 안드로이드의 기기 전화 번호 얻어오기 (0) | 2013.11.27 |
---|---|
Xcode5 beta5 버전 : 콘솔에 AssertMacros로 넘치는 현상 발생 (0) | 2013.08.18 |
[iOS] NSString과 NSMutableString을 이용한 append 속도 비교 (0) | 2010.12.29 |
[iOS] 한영이 섞인 XML 파싱시 한/영 분리 문제.. NSXMLParser (0) | 2010.12.28 |
[iOS] UIBezierPath를 이용해서 태극 문양 그리기 (0) | 2010.12.23 |