[IOS] - IOS 숫자 3자리 콤마찍기
IOS ( Object-C ) 2014. 9. 2. 21:53반응형
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle:NSNumberFormatterDecimalStyle];
NSString *commaCount = [numberFormatter stringFromNumber:[NSNumber numberWithInt:[dataCount integerValue]]];
NSLog("Comma : %@", commaCount);
반응형
'IOS ( Object-C )' 카테고리의 다른 글
[IOS] - IOS 문자열 자르기 substringWithRange (0) | 2014.09.11 |
---|---|
[IOS] - IOS Timer 아이폰 타이머 사용법 (0) | 2014.09.03 |
[IOS] - IOS UIView Overflow Hidden ( Method clipsToBounds ) (0) | 2014.08.27 |
[IOS / Object-C] - IOS 버튼 그라데이션, UIButton Gradation (0) | 2014.08.09 |
[IOS] - IOS ScrollView 스크롤 초기화 (0) | 2014.08.01 |