溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Two-stage rotation animation is deprecate警告

發(fā)布時(shí)間:2020-06-26 02:48:41 來(lái)源:網(wǎng)絡(luò) 閱讀:730 作者:weimingtom 欄目:移動(dòng)開(kāi)發(fā)

當(dāng)UINavigationController與UITabBarController用relation segue連接時(shí)(UINavigationController作為根),運(yùn)行會(huì)提示:

Two-stage rotation animation is deprecate.This application should use the smoother single-stage animation.


解決辦法是:

UINavigationController不應(yīng)該作為UITabBarController的根來(lái)關(guān)聯(lián),而應(yīng)該作為UITabBarController的子ViewController的根關(guān)聯(lián)(而UINavigationController的根是UITabBarController)。假設(shè)UITabBarController有兩個(gè)子ViewController,那么按住Ctrl鍵連線的方式應(yīng)該是:

-------------------------

UITabBarController

->

第一個(gè)UINavigationController

->

第一個(gè)UIViewController

-------------------------

UITabBarController

->

第二個(gè)UINavigationcontroller

->

第二個(gè)UIViewController

-------------------------

也就是說(shuō)有多少個(gè)tab,就要?jiǎng)?chuàng)建相應(yīng)數(shù)量的UINavigationcontroller。

所有的連接方式都要選擇relationship segue - root view controller



向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI