UIApplication 在此上下文中不存在错误 Xamarin Forms 升级到统一 API

UIApplication does not exist in this context error Xamarin Forms upgrade to unified API

我已经升级我的 Xamarin 表单应用程序以使用新的统一 API

我已经按照说明进行了,一切顺利,直到下面的代码没有改变,并且与我上周开始时由项目模板生成的代码一样

using System;
using System.Collections.Generic;
using System.Linq;

namespace Newtest.iOS
{
    public class Application
    {
        // This is the main entry point of the application.
        static void Main (string[] args)
        {
            // if you want to use a different Application Delegate class from "AppDelegate"
            // you can specify it here.
            UIApplication.Main (args, null, "AppDelegate");
        }
    }
}

错误是:

UIApplication does not exist in this context.

我知道有很多重命名作为统一的一部分 API 但我看不到关于这个错误的任何信息

我什至尝试在更新后创建一个新应用程序,以查看项目模板是否在我的 IOS 应用程序中为 Main.cs 生成了不同的代码,但它没有

有什么地方可以获取更新的模板吗?我正在使用 Xamarin Studio。

在 Unified API 中,UIApplication 在 UIKit 命名空间中。您需要添加

using UIKit;