[Error] Initializer element is not a compile-time
2020. 9. 17. 14:03ㆍ개발자료/iOS
반응형
# 다국어 처리중 오류
static const NSString *str = @"문자열";
형태로 사용된 코드에 NSLocalizedString 사용시 오류 발생. 컴파일 불가
static const NSString *str = NSLocalizedString(@"문자열", @"");
# 처리 방안
define을 이용한 문자열 정의(이름은 상황에 맞게 정의)
#define str NSLocalizedString(@"문자열", @"")
반응형
'개발자료 > iOS' 카테고리의 다른 글
다국어 지원 (0) | 2020.09.18 |
---|---|
[Error] tool 'ibtool' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance (0) | 2020.09.17 |
[리젝사유] 5.1.5 Legal: Privacy - Location Services (0) | 2020.09.14 |
Could not locate device support files. (0) | 2020.09.14 |
CocoaPods 사용법 (0) | 2020.09.09 |