iOS handle ctor is now NativeHandle not IntPtr

This commit is contained in:
Redth 2022-01-06 11:33:03 -05:00
Родитель c631ccad2d
Коммит 119923be44
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1517,7 +1517,7 @@ namespace Microsoft.Maui.Controls.Compatibility.Platform.iOS
}
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
protected internal FormsNavigationBar(IntPtr handle) : base(handle)
protected internal FormsNavigationBar(NativeHandle handle) : base(handle)
{
}

Просмотреть файл

@ -48,7 +48,7 @@ namespace Microsoft.Maui.Handlers
readonly IntPtr _handle;
NSApplication(IntPtr handle)
NSApplication(NativeHandle handle)
{
_handle = handle;
}

Просмотреть файл

@ -25,7 +25,7 @@ namespace Microsoft.Maui.Platform
{
}
protected internal MauiSearchBar(IntPtr handle) : base(handle)
protected internal MauiSearchBar(NativeHandle handle) : base(handle)
{
}