화면 회전
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
if(!UIDeviceOrientationIsLandscape(orientation))
{
//가로
}else{
//세로
}
버전 확인
if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0)
{
}
'iPhone' 카테고리의 다른 글
키보드 위에 닫기 버튼 넣기 (0) | 2014.12.30 |
---|---|
xocde4 이하버전 소스에서 xocde5이상 업데이트 시 status bar 겹치는 문제 해결법 (0) | 2014.10.23 |
ios 배포버전 로그(NSLog) 숨기기 (0) | 2013.08.30 |
ios UITableView에서 Cell에 롱터치이벤트(UILongPressGestureRecognizer)를 주었을 때 몇 번째 Cell의 index값을 가져오는 방법 (0) | 2013.07.18 |
ios Exception Type signal (0) | 2013.05.06 |