Development/iOS (4) 썸네일형 리스트형 [iOS] 숫자 (int)에 쉼표 (comma) 넣기 숫자에 쉼표 (comma)를 넣고 싶은 경우 아래와 같은 코드를 구현하면 된다. 사용법 NSString result = [StringUtils getInsertedCommaString:123456789]; 결과값 123,456,789 + (NSString *)getInsertedCommaString:(int)intValue { NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init]; [formatter setNumberStyle:NSNumberFormatterDecimalStyle]; return [formatter stringFromNumber:[NSNumber numberWithInt:intValue]]; } [iOS] The app delegate must implement the window property if it wants to use a main storyboard file. 문제 해결 방법 아래 코드를 AppDelegate.h에 정의해준다. @property (strong, nonatomic) UIWindow *window; [iOS] 앱 이름 변경 iOS 앱의 앱 이름 변경은 다음 경로에서 가능합니다. TARGETS > General Identity > Display Name [iOS] iOS 13에서 dark mode 미지원 iOS 13에서 도입된 dark mode를 적용하지 않으면 화면이 이상하게 나오는 문제가 있다. Dark mode를 지원하지 않으려면 Info.plist에서 다음을 적용한다. UIUserInterfaceStyle Light 이전 1 다음