iOS13 適配和Xcode11.0踩坑小結
這篇文章主要介紹了iOS13 適配和Xcode11.0踩坑小結,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
iOS13中presentViewController的問題
更新了Xcode11.0 beta之後,在iOS13中執行程式碼發現presentViewController和之前彈出的樣式不一樣。
會出現這種情況是主要是因為我們之前對UIViewController
裡面的一個屬性,即modalPresentationStyle
(該屬性是控制器在模態檢視時將要使用的樣式)沒有設定需要的型別。在iOS13中modalPresentationStyle
的預設改為UIModalPresentationAutomatic
,而在之前預設是UIModalPresentationFullScreen
。
/*
Defines the presentation style that will be used for this view controller when it is presented modally. Set this property on the view controller to be presented, not the presenter.
If this property has been set to UIModalPresentationAutomatic, reading it will always return a concrete presentation style. By default UIViewController resolves UIModalPresentationAutomatic to UIModalPresentationPageSheet, but other system-provided view controllers may resolve UIModalPresentationAutomatic to other concrete presentation styles.
Defaults to UIModalPresentationAutomatic on iOS starting in iOS 13.0, and UIModalPresentationFullScreen on previous versions. Defaults to UIModalPresentationFullScreen on all other platforms.
*/
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
要改會原來模態檢視樣式,我們只需要把UIModalPresentationStyle
設定為UIModalPresentationFullScreen
即可。
ViewController *vc = [[ViewController alloc] init];
vc.title = @"presentVC";
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.modalPresentationStyle = UIModalPresentationFullScreen;
[self.window.rootViewController presentViewController:nav animated:YES completion:nil];
私有KVC
在使用iOS 13執行專案時突然APP就crash掉了。定位到的問題是在設定UITextField的Placeholder也就是佔位文字的顏色和字型時使用了KVC的方法:
[_textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
[_textField setValue:[UIFont systemFontOfSize:14] forKeyPath:@"_placeholderLabel.font"];
可以將其替換為
_textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"姓名" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor redColor]}];
並且只需要在初始化的時候設定attributedPlaceholder即富文字的佔位文字,再重新賦值依然使用placeolder直接設定文字內容,樣式不會改變。(想要這種效果的話需要在初始化attributedPlaceholder時的字串不為空)
Universal Link(通用連結)
在Xcode11中配置Universal Link(通用連結)步驟:
在iOS13之前在其他APP去safari中開啟Universal Link
(通用連結)系統匹配域名是全匹配,而在iOS13之後規則發生了變化,猜測是包含關係。比如在iOS13之前,如果Universal Link
(通用連結)為w.mydomain.com
那麼在微信或者其他APP訪問www.mydomain.com
然後點選去safari開啟則不會拉起相應APP,而在iOS13則會拉起相應APP。
而在safari中輸入的連結則依然和iOS之前一樣,只有www.mydomain.com
才會提示開啟相應APP。
修改APP名稱(修改DisplayName值)
在Xcode建立專案時預設的project.pbxproj
中的所有PRODUCT_NAME = "$(TARGET_NAME)"
;。
在Xcode11.0之前如果修改DisplayName
時只是修改info.plist
中的Bundle display name
值,但是在Xcode11.0中修改該值則會把project.pbxproj
中的一個PRODUCT_NAME改為修改後值,如果在專案中通過[NSBundle mainBundle] infoDictionary]
取kCFBundleExecutableKey
的就會有影響,並且對Build Settings
中的Packaing
中的一些名稱有影響,可能還會有其他影響有待關注。
以上就是本文的全部內容,希望對大家的學習有所幫助
相關文章
- iOS13簡單適配iOS
- 小程式踩坑填坑
- 小程式踩坑
- 微信小程式適配 iPhone X 總結微信小程式iPhone
- h5頁面適配小結H5
- Android華為凹口屏適配小結Android
- iOS 11 適配的坑iOS
- mpvue小程式以及微信直播踩坑總結Vue
- 使用setInterval與clearInterval踩的小坑總結
- 小程式踩坑(2)
- [小程式] mpVue 踩坑Vue
- 適配iOS 11和iPhoneX螢幕適配遇到的一些坑iOSiPhone
- Android技能樹 — 螢幕適配小結Android
- 美團小程式框架mpvue踩坑總結編一框架Vue
- iOS13 即將到來,iOS 推送 DeviceToken 適配步驟詳解iOSdev
- mpvue小程式踩坑之旅Vue
- 小程式踩坑系列一
- vue vue-element-admin專案踩坑小結Vue
- 微信小程式踩坑指南【一】微信小程式
- Taro 小程式 踩坑記錄
- 視訊播放–踩坑小計
- 微信小程式踩坑記錄微信小程式
- 小程式踩坑日記 (一)
- 視訊播放--踩坑小計
- Vue + TypeScript 踩坑總結VueTypeScript
- Android螢幕適配總結和思考Android
- 融雲國產化適配排坑指南
- wepy小程式踩過的坑(1)
- 微信小程式BLE踩坑記錄微信小程式
- prerender-spa-plugin 踩坑小記Plugin
- c語言踩坑總結C語言
- mpvue開發音訊類小程式踩坑和建議Vue音訊
- React Native踩坑指南:WebView高度自適應React NativeWebView
- 微信小程式的踩坑與優化。微信小程式優化
- 微信小程式 海報生成踩坑記微信小程式
- async語法升級踩坑小記
- 微信小程式mpvue(沒朋友)踩坑指南微信小程式Vue
- Vue.js 升級踩坑小記Vue.js