歡迎光臨
每天分享高質量文章

支援Xcode10和適配iPhone XS Max、iPhone XR

作者:Mister_H

連結:https://www.jianshu.com/p/24920e577e07


目前我們專案已做了Xcode10(swift4.0)和新機型的適配,總結一下遇到的問題和修改的內容,希望幫助到其他人,如果您有不同的看法或遺漏,歡迎指出!


1、第三方庫編譯報錯

如果專案裡用到了Mixpanel-swift和SwiftLint,這兩個在Xcode10上會報錯,目前作者已提交新版本分別是2.4.5和0.27.0,更新後即可解決報錯。

2、library not found for – lstdc++.6.0.9

pod工程編譯透過後會進行主工程的編譯,如果依賴了libstdc++.tbd和libstdc++.6.0.9.tbd,就會報這個error,原因是蘋果在XCode10和iOS12中移除了libstdc++這個庫,由libc++這個庫取而代之,蘋果的解釋是libstdc++已經標記為廢棄有5年了,建議大家使用經過了llvm最佳化過並且全面支援C++11的libc++庫。

臨時的解決方法就是把libstdc++.6.0.9.tbd這個檔案匯入到Xcode10中,分別放到以下目錄 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/   和 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/  這時編譯可以透過。

但這隻是臨時的解決方案,如果你自己的業務模組使用了libstdc++,那麼就把模組程式碼重新調整為依賴libc++,然後重新檢查是否存在問題,重新編譯。如果你取用的第三方廠商提供的sdk中依賴了libstdc++,那麼抓緊聯絡廠商,要求版本升級。

3、Enum case ‘…’ not found in type ‘…’

解決好上面兩個報錯,編譯程式時還會顯示這個error,具體場景如下:

PosVisitQuestionType: String {
    case text
    case textArea = "text_area"
    case dropDownList = "drop_down_list"
    case radioButton = "radio_button"
}
let type: PosVisitQuestionType!
...
switch type {
case .text, .textArea:
    errorText = NSLocalizedString("Please enter the following options", comment: "")
case .dropDownList, .radioButton:
    errorText = NSLocalizedString("Click the right button to get current location", comment: "")
default:
    break
}

Xcode10建議每個case 情況下加“?”

原因可能是 type是可選的,所以每個case情況要與type型別保持一致,所以提示加 “?”,可能是Xcode10編譯器更新的原因。

修改的方法是如果確定type會被賦值,那在定義的時候就把“!”去掉,如果不確定type是否有值就按照Xcode提示修改。

4、適配iPhone XS Max、iPhone XR

我們專案在獲取機型等資訊用的是DeviceKit這個第三方庫,所以也需要更新一下才能獲取到新機型的資訊,最新版是1.8.1。在最新版有這樣一個變數

/// All Face ID Capable Devices
    static public var allFaceIDCapableDevices: [Device] {
      return [.iPhoneX, .iPhoneXs, .iPhoneXsMax, .iPhoneXr]
    }

由於iPhone X、iPhone XS、iPhone XS Max、iPhone XR這些機型的navigationBar高度以及tabBar高度都一致,所以可以用allFaceIDCapableDevices是否包含當前裝置,來判斷當前裝置是否有“齊劉海”。

示例:

static let faceIDDeviceArray = Device.allFaceIDCapableDevices

static let navigationHeight: CGFloat = {
        if faceIDDeviceArray.contains(currentDevice) {
            return faceIDDeviceNavHeight
        } else {
            return ordinaryDeviceNavHeight
        }
    }()

同時DeviceKit中也提供這樣一個方法,執行模擬器的時候呼叫,也會傳回真實的裝置名稱

/// Get the real device from a device. If the device is a an iPhone8Plus simulator this function returns .iPhone8Plus (the real device).
    /// If the parameter is a real device, this function returns just that passed parameter.
    ///
    /// - parameter device: A device.
    ///
    /// - returns: the underlying device If the `device` is a `simulator`,
    /// otherwise return the `device`.
    public static func realDevice(from device: DeviceKit.Device) -> DeviceKit.Device

示例:

static let currentDevice = Device.realDevice(from: Device())
if currentDevice == .iPhoneX {}
// 取代以下寫法
if Device(== .iPhoneX || Device() == .simulator(.iPhoneX) {}

最後別忘了再切兩張啟動圖,因為iPhone XS和尺寸和iPhone X是一樣的,所以iPhone XS可以忽略

iPhone XR:828px x 1792px

iPhone XS Max: 1242px x 2688px

參考連結

https://www.jianshu.com/p/5e0263d22022


謝謝各位,歡迎指教!



編號309,輸入編號直達本文

●輸入m獲取文章目錄

推薦↓↓↓

Web開發

更多推薦18個技術類微信公眾號

涵蓋:程式人生、演演算法與資料結構、駭客技術與網路安全、大資料技術、前端開發、Java、Python、Web開發、安卓開發、iOS開發、C/C++、.NET、Linux、資料庫、運維等。

贊(0)

分享創造快樂