UNO 6: MacCatalyst support removed? #20416
-
As of Uno 6.0, I've noticed that MacCatalyst is no longer an option at
In Rider, I tried pasting a Given the ability to access MacCatalyst SDK in a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
OH, so close! Here's what I had to do to get MacCatalyst to work:
using UIKit;
using Uno.UI.Hosting;
namespace MyApp.MacCatalyst;
public class EntryPoint
{
// This is the main entry point of the application.
public static void Main(string[] args)
{
App.InitializeLogging();
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
//UIApplication.Main(args, null, typeof(App));
var host = UnoPlatformHostBuilder.Create()
.App(() => new App())
.UseAppleUIKit()
.Build();
host.Run();
}
} |
Beta Was this translation helpful? Give feedback.
-
Thanks @jeromelaban . I appreciated you going into a little more detail at yesterday's Q&A session. |
Beta Was this translation helpful? Give feedback.
Indeed, we've removed Mac Catalyst from template options because the desktop target is generally the best one to use. Having both was causing confusion.
Mac Catalyst is still supported by Uno otherwise, as you've seen with this builder.