C# wrapper library around the native iOS Static Library or Framework developed using Swift/Objective-C for Xamarin.iOS.
Questions tagged [xamarin.ios-binding]
77 questions
1
vote
2 answers
Delegate in Xamarin.iOS
I have a problem in creating class for xamarin.ios delegate.
In iOS we use protocols to implement the delegate but here I can not implement Interface as a delegate.
Let me clear this concept.
I have an interface in one file like:
public interface…

ASAD
- 153
- 2
- 11
1
vote
0 answers
Xamarin binding successfull, but while using the dll in a test app, is crashing on the launch time with dyld error
Filtered syslog:
None found
Dyld Error Message:
Dyld Message: Library not loaded: @rpath/RichRelevanceSDK.framework/RichRelevanceSDK
Referenced from:…

Jagadeeshwar
- 863
- 11
- 25
0
votes
0 answers
How to declare method in c# with parameters as handler and map that to obj-C native binding library in Xamarin iOS?
Obj-C syntax for the method:
Starts MyIP service.
@param onMyIpSuccess It is called when MyIP service detects IP change. @see MyIpServiceSuccessHandler.
@param onMyIpFailure It is called when MyIP service gets an error. @see…

user3162111
- 21
- 4
0
votes
0 answers
How to fix libresolv dependency when using native binding in xamarin ios?
While building, I am getting errors which I believe are related to libresolv, kindly suggest what needs to be done to resolve this.
I have already enabled smartlink=true, forceload = false for native frameworks.
Any help would be highly…

user3162111
- 21
- 4
0
votes
0 answers
Swift library bindings to Xamarin
I am developing a Xamarin.iOS app. Some functionality is not possible for me to do in Xamarin that I have seen that they are able to do in Swift code.
When searching I came across something called "library bindings" and just want to see if I have…

Malin
- 97
- 1
- 8
0
votes
1 answer
Generate Xamarin.iOS bindings for HERE SDK 4
I'm trying to create the Xamarin.iOS bindings for the HERE SDK 4:
sudo xcode-select -s /Applications/Xcode_12.4.app
cd heresdk-navigate-ios-4.11.0.0.8255/heresdk.xcframework/ios-arm64
sharpie bind -sdk iphoneos14.4 -framework…

Tom
- 190
- 3
- 18
0
votes
1 answer
How do I get Objective Sharpie to recognize framework dependency header paths?
I have created a framework with Xcode that will be used as a Swift native binding for a Xamarin iOS app. This framework has another framework dependency (GoogleMobileAds).
My xcodebuild steps for both arm64 and x86_64 are successful, but the…

Chris Simeone
- 755
- 1
- 10
- 26
0
votes
0 answers
Xamarin.iOS binding library that depends on FirebaseCore
I need to bind library for Xamarin.iOS which has many dependencies, such as Firebase/Core and Firebase/Messaging.
Following that doc, I have created a proxy project, generated the fat release, used sharpie to create the ApiDefinitions, generated the…

Maxime Esprit
- 705
- 1
- 8
- 29
0
votes
1 answer
Execute DidRangeBeacons all the time in iOS 15 when user is in the range of beacon
[Expected behaviour: Specifically for iOS 15. iOS 14 or lower versions work fine]
I have an Xamarin.Forms iOS app where I am monitoring and ranging for BLE beacons. The goal is that being in foreground, background or killed state, when I enter a…

Jason Roy
- 43
- 6
0
votes
0 answers
How to add "Done" button to uiDatepicker in xamarin.ios for compact style
I was trying to add a button manually on the screen after a datepicker is tapped. But no matter what it always gets under the modal or blurred. Is it possible to add this button on top of that modal somehow and then when the button is tapped the…

Robin Khan
- 127
- 1
- 10
0
votes
0 answers
How to use iOS dynamic framework from .NET Standard assembly in Xamarin.iOS
We have a class library (C++) that is compiled into a dynamic library (.dll, .so etc.) on various platforms. The dynamic library is then loaded using P/Invoke from .NET including a .NET Standard 2.1 assembly. Now, we want to do the same on iOS. My…

Eugene Mayevski 'Callback
- 45,135
- 8
- 71
- 121
0
votes
2 answers
I want to Display Square Checkbox on IOS ,IPad in xamarin form
This Below is my IOS Page .I want to show this type of check box on iOS in xamarin form. I have use Xamarin 5.0 version. When I am try to use check element in iOS show rounded check box but I want square check box.
user15328776
0
votes
1 answer
How can I debug a "Failed to install" message?
I am currently attempting to develop a cross-platform mobile app using Xamarin.forms. As a part of this application I need to include a 3rd party .framework in my Xamarin.iOS project. I have successfully created a Xamarin.iOS Bindings Library .dll…

Sam Rogers
- 3
- 2
0
votes
1 answer
Xamarin iOS Platform - Get Device Serial# Method - iOS 8 or Later
For our project, we are trying to get the Device Serial Number of the iOS device using the Xamarin platform. We do not have direct APIs for retrieving the Serial Number of the device from iOS 8 or later.
We had come across one solution like creating…

Balasubramanian
- 63
- 6
0
votes
1 answer
Will Apple reject this solution for getting unique id in Xamarin iOS?
I want to know if Apple will reject this solution or not for getting the unique id in Xamarin iOS?
public string GetIdentifier()
{
enter code here`var query = new SecRecord(SecKind.GenericPassword);
query.Service =…

kefi Kefi
- 128
- 10