how to set iOS 6/7 Deltas programmatically

前端 未结 4 1505
说谎
说谎 2021-02-19 16:14

I was developing a UISplitView app by using Xcode 4.6 when I left iOS6 I had design:

\"enter

4条回答
  •  心在旅途
    2021-02-19 17:16

    Also, you can use NSFoundationVersionNumber

    if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
      // > iOS7
    } else {
      // <= iOS6
    }
    

提交回复
热议问题