[IOS] - 아이폰 스크린 가로, 세로 길이 구하기
IOS ( Object-C ) 2014. 6. 30. 11:21반응형
NSMutableArray *rtn = [NSMutableArray new];
CGRect screenRect = [[UIScreen mainScreen] bounds];
NSInteger screenWidth = screenRect.size.width;
NSInteger screenHeight = screenRect.size.height;
[rtn addObject:[NSNumber numberWithInt:screenWidth]];
[rtn addObject:[NSNumber numberWithInt:screenHeight]];
반응형
'IOS ( Object-C )' 카테고리의 다른 글
[IOS] - IOS TextField Password 아이폰 비밀번호 키보드 타입 (0) | 2014.07.01 |
---|---|
[IOS] - Text Field 키보드 영어 사용 (0) | 2014.07.01 |
[IOS] - 문자열 붙이기 NSString stringWithFormat (0) | 2014.06.29 |
[IOS] - IOS 현재 시간 구하기 (0) | 2014.06.29 |
[IOS] - IOS 웹뷰 사용시 바운스 및 스크롤 막기 (0) | 2013.06.26 |