iOS7 미만 버전 처리
 
        if (NSFoundationVersionNumber <= NSFoundationVersionNumber_iOS_6_1) {
            // ios6.1 이하 버전 
        }
iOS7 이상 버전 처리
 
        if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) {
            // ios7 이상 버전 
        }

+ Recent posts