一杂抽、模態(tài)彈出
在iOS13中modalPresentationStyle的默認(rèn)改為UIModalPresentationAutomatic,而在之前默認(rèn)是UIModalPresentationFullScreen。
要改會(huì)原來(lái)模態(tài)視圖樣式,我們只需要把UIModalPresentationStyle設(shè)置為UIModalPresentationFullScreen即可
如果是從控制器跳轉(zhuǎn)的,這個(gè)屬性設(shè)置在控制器扎即,如果是封裝了一個(gè)單獨(dú)的導(dǎo)航欄跳轉(zhuǎn),則這個(gè)屬性設(shè)置在導(dǎo)航欄
二、私有KVC
iOS不允許valueForKey叹俏、setValue: forKey獲取和設(shè)置私有屬性,需要使用其它方式修改
如:[textField setValue:[UIColor red]forKeyPath:@"_placeholderLabel.textColor"];
//替換為
textField.attributedPlaceholder?=[[NSAttributedString alloc]initWithString:@"輸入"attributes:@{NSForegroundColorAttributeName:[UIColor red]}];
三僻族、蘋(píng)果提供第三方登錄
Sign in with Apple -提供第三方登錄的注意啦
如果你的應(yīng)用使用了第三方登錄粘驰,那么你可能也需要加下 「Sign in with Apple」
Sign In with Apple will be available for beta testing this summer. It will be required as an option
for users in apps that support third-party sign-in when it is commercially available later this year.
如果蘋(píng)果開(kāi)發(fā)者提供任何其他第三方登錄屡谐,同時(shí)需要提供“蘋(píng)果登錄”選項(xiàng)。也就是說(shuō)蝌数,如果軟件要求“微信登錄”或是“QQ登錄”時(shí)康嘉,必須同時(shí)提供“蘋(píng)果登錄”的選項(xiàng)給用戶自行選擇。根據(jù)蘋(píng)果公司最新公布的指南籽前,要求開(kāi)發(fā)者在蘋(píng)果終端的應(yīng)用程序登錄界面上,將“蘋(píng)果登錄”選項(xiàng)列在任何其他第三方登錄的選項(xiàng)之上敷钾。
雖然這只是蘋(píng)果的指南建議枝哄,并非蘋(píng)果商店的審查要求,但是開(kāi)發(fā)者認(rèn)為這無(wú)疑是通過(guò)蘋(píng)果審核的一個(gè)好方法
官方Demo:點(diǎn)我下載
四阻荒、UISearchBar顯示問(wèn)題
TextField
升級(jí)到iOS13挠锥,UISearchController上的SearchBar顯示異常,查看后發(fā)現(xiàn)對(duì)應(yīng)的高度只有1px,目前沒(méi)找到具體導(dǎo)致的原因侨赡,解決辦法是使用KVO監(jiān)聽(tīng)frame值變化后設(shè)置去應(yīng)該顯示的高度
黑線處理crash
之前為了處理搜索框的黑線問(wèn)題會(huì)遍歷后刪除UISearchBarBackground蓖租,在iOS13會(huì)導(dǎo)致UI渲染失敗crash;解決辦法是設(shè)置UISearchBarBackground的layer.contents為nil
publicfuncclearBlackLine(){
?forview?inself.subviews.last!.subviews?{
?ifview.isKind(of:NSClassFromString("UISearchBarBackground")!){
??????????????? view.backgroundColor?=UIColor.white
??????????????? view.layer.contents?=nil
?break } } }
五、TabBar紅點(diǎn)偏移
如果之前有通過(guò)TabBar上圖片位置來(lái)設(shè)置紅點(diǎn)位置羊壹,在iOS13上會(huì)發(fā)現(xiàn)顯示位置都在最左邊去了蓖宦。遍歷UITabBarButton的subViews發(fā)現(xiàn)只有在TabBar選中狀態(tài)下才能取到UITabBarSwappableImageView,解決辦法是修改為通過(guò)UITabBarButton的位置來(lái)設(shè)置紅點(diǎn)的frame
六油猫、MPMoviePlayerController廢棄
MPMoviePlayerController 在iOS 13已經(jīng)不能用了
'MPMoviePlayerController is no longer available. Use AVPlayerViewController in AVKit.'?
解決方案:既然不能再用了稠茂,那只能換掉了。替代方案就是AVKit里面的那套播放器情妖。(DDW使用的AVKit)
七睬关、DeviceToken變化
iOS 13 DeviceToken有變化,原有的方法已經(jīng)無(wú)法獲取到準(zhǔn)確的DeviceToken字符串了
NSString *dt = [deviceToken description];
dt = [dt stringByReplacingOccurrencesOfString: @"<" withString: @""];
dt = [dt stringByReplacingOccurrencesOfString: @">" withString: @""];
dt = [dt stringByReplacingOccurrencesOfString: @" " withString: @""];
這段代碼運(yùn)行在 iOS 13 上已經(jīng)無(wú)法獲取到準(zhǔn)確的DeviceToken字符串了毡证,iOS 13 通過(guò)[deviceToken description]獲取到的內(nèi)容已經(jīng)變了电爹。
解決方案
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken{
??? if (![deviceToken isKindOfClass:[NSData class]]) return;
??? const unsigned *tokenBytes = [deviceToken bytes];
??? NSString *hexToken = [NSString stringWithFormat:@"%08x%08x%08x%08x%08x%08x%08x%08x",
????????????????????????? ntohl(tokenBytes[0]), ntohl(tokenBytes[1]), ntohl(tokenBytes[2]),
????????????????????????? ntohl(tokenBytes[3]), ntohl(tokenBytes[4]), ntohl(tokenBytes[5]),
????????????????????????? ntohl(tokenBytes[6]), ntohl(tokenBytes[7])];
??? NSLog(@"deviceToken:%@",hexToken);
}
八、LaunchImage廢棄
即將廢棄的 LaunchImage
從 iOS 8 的時(shí)候料睛,蘋(píng)果就引入了 LaunchScreen丐箩,我們可以設(shè)置 LaunchScreen來(lái)作為啟動(dòng)頁(yè)。當(dāng)然秦效,現(xiàn)在你還可以使用
LaunchImage來(lái)設(shè)置啟動(dòng)圖雏蛮。不過(guò)使用LaunchImage的話,要求我們必須提供各種屏幕尺寸的啟動(dòng)圖阱州,來(lái)適配各種設(shè)備挑秉,
隨著蘋(píng)果設(shè)備尺寸越來(lái)越多,這種方式顯然不夠 Flexible苔货。而使用 LaunchScreen的話犀概,情況會(huì)變的很簡(jiǎn)單立哑,
LaunchScreen是支持AutoLayout+SizeClass的,所以適配各種屏幕都不在話下姻灶。
注意啦铛绰,從2020年4月開(kāi)始,所有使? iOS13 SDK的 App將必須提供 LaunchScreen产喉,LaunchImage即將退出歷史舞臺(tái)捂掰。
本文參考自:http://www.reibang.com/p/46cd57b98b0d
如發(fā)現(xiàn)遺漏或者錯(cuò)誤,請(qǐng)?jiān)谙路皆u(píng)論區(qū)留言曾沈。