2012-10-18 1 views

답변

2

아니요.

리소스 이름을 지정하기 위해이 문자열에 대해 some documentation here (and in some other places) in Apple doc을 볼 수는 있지만 코코아 상수는 없습니다.

SDK 디렉토리의 문자열 (/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/System/Library)을 grep하려고 시도했지만 해당 문자열은 SDK의 헤더 파일이 아니라 프레임 워크 바이너리에서만 발견되었습니다.

+0

일이 있습니다. :) – hpique

0

MONResourceSuffix.h

extern NSString * const MONResourceSuffix_at2x; 
extern NSString * const MONResourceSuffix_tilde_ipad; 
extern NSString * const MONResourceSuffix_hyphen_568h; 

MONResourceSuffix.m

NSString * const MONResourceSuffix_at2x = @"@2x"; 
NSString * const MONResourceSuffix_tilde_ipad = @"~ipad"; 
NSString * const MONResourceSuffix_hyphen_568h = @"-568h"; 

지금 greping에 대한 :)

관련 문제