第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在 MVVMCross 中從 4.4 遷移到 5.7 時出現(xiàn) CustomPresenter 錯誤

在 MVVMCross 中從 4.4 遷移到 5.7 時出現(xiàn) CustomPresenter 錯誤

C#
絕地?zé)o雙 2023-12-17 10:21:20
我正在開發(fā)一個使用 MVVMCross 和 Xamarin for iOS 和 Android 構(gòu)建的項目。我發(fā)現(xiàn)該項目使用了相當舊的 MVVMCross 版本(4.4.0),我正在嘗試將其升級到當前版本(6.4)。我認為首先升級到 5.7 是個好主意,在稍后階段,當我將導(dǎo)航切換到新形式等時,我將升級到 6++。我已經(jīng)成功地將android版本運行到5.7,但是,iOS版本使用了customPresenter,我不太知道如何轉(zhuǎn)換為5.1中引入的新Presenter。我認為我的自定義演示器基于 https://github.com/MvvmCross/MvvmCross-Samples/tree/master/XPlatformMenus/XPlatformMenusTabs.iOS有一段時間沒有更新了。在我的 MvxTabPresenter 子類中,show 函數(shù)不再是可重寫的。另外 IMvxModalIosView 似乎不再存在。public override void Show(IMvxIosView view)        {            if (view is IMvxModalIosView)            {                if (this._currentModalViewController != null)                {                    return;                }                var currentModalViewController = view as MvxViewController;                this._currentModalViewController = currentModalViewController;                currentModalViewController.ModalPresentationStyle = UIModalPresentationStyle.Popover;                CurrentTopViewController.AddChildViewController(currentModalViewController);                currentModalViewController.View.Frame = CurrentTopViewController.View.Bounds.Inset(10, 10);                currentModalViewController.View.Alpha = 0;                CurrentTopViewController.View.Add(currentModalViewController.View);                currentModalViewController.DidMoveToParentViewController(CurrentTopViewController);                UIView.Animate(0.25, () =>                {                    currentModalViewController.View.Alpha = 1;                });                //this.PresentModalViewController(currentModalViewController, true);                return;            }            if (view is HomeView)            {                if (this.CurrentTopViewController is MvxTabBarViewController)                {                    TabBarPresenter.SelectedIndex = 0;                    return;            base.CloseModalViewController();        }            }而且,這不再可以從超類中覆蓋。關(guān)于如何解決這個問題有什么建議嗎?親切的問候, V
查看完整描述

1 回答

?
慕勒3428872

TA貢獻1848條經(jīng)驗 獲得超6個贊

正如您在?MvxIosViewPresenter?中看到的,現(xiàn)在 mvx 屬性已注冊到應(yīng)調(diào)用的操作中。

因此,首先您應(yīng)該繼承自MvxIosViewPresenter。然后,對于模式,您應(yīng)該覆蓋?ShowModalViewController。


查看完整回答
反對 回復(fù) 2023-12-17
  • 1 回答
  • 0 關(guān)注
  • 160 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號