다국어 지원
2020. 9. 18. 09:41ㆍ개발자료/iOS
반응형
# 코드에서 지역화 추출
genstrings -o sampleapp.lproj *.m
Localizable.strings 파일을 반환한다.
# Interface Builder(XIB) 파일에서 문자열 추출
ibtool --generate-stringsfile MainViewController.strings MainViewController.xib
# 다수의 파일 처리
쉘스크립트(Shell Script) 생성 후 실행
#!/bin/bash
for f in *.xib; do
echo "변환 중 $f file..."
ibtool --generate-stringsfile ${f%.*}.strings $f
done
xib 파일이 위치한 곳에서 실행
반응형
'개발자료 > iOS' 카테고리의 다른 글
AVPlayerViewController 사용 (0) | 2020.09.25 |
---|---|
Xcode unsupported family (0) | 2020.09.22 |
[Error] tool 'ibtool' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance (0) | 2020.09.17 |
[Error] Initializer element is not a compile-time (0) | 2020.09.17 |
[리젝사유] 5.1.5 Legal: Privacy - Location Services (0) | 2020.09.14 |