iOS 개발하는 중 화면사이즈, 라이브러리 로드 등의 문제로 버전 별로 분기가 필요할 때..
NSArray *vComp = [[UIDevice currentDevice].systemVersion
componentsSeparatedByString:@"."];
if ( [[vComp objectAtIndex:0] intValue] >= 7) { //do this only for ios7+
// iOS 7 이상~
} else {
// iOS 7 미만~
}