how to use .a file in .net ios?

mc 4,006 Reputation points
2024-06-29T08:38:12.6066667+00:00

I am using .net ios.

User's image

what should I do next?

I am not using xamarin.ios and maui. I am using .net ios.

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,135 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Bruce (SqlWork.com) 60,201 Reputation points
    2024-06-29T19:31:09.25+00:00

    you need to create a .net wrapper for the native library (it is same for maui). see docs:

    https://video2.skills-academy.com/en-us/dotnet/maui/migration/ios-binding-projects?view=net-maui-8.0

    note: net IOS uses the Maui build chain and tools, it just does not include the forms package and Maui startup template. Maui has poorly documented storyboard support but it's there. if you want to use SwiftUI, you will need to produce an objective-c wrapper, then a .net wrapper.

    0 comments No comments