H Henrique Neri Member Nov 18, 2022 #1 Hello, how do I add the https://sdk.telemedicinaeinstein.com.br/EinsteinSDK_1.0.zip framework to my project? I'm using Hosted Mac Builder
Hello, how do I add the https://sdk.telemedicinaeinstein.com.br/EinsteinSDK_1.0.zip framework to my project? I'm using Hosted Mac Builder
H Henrique Neri Member Nov 22, 2022 #3 #Region Project Attributes ... #AdditionalLib: HIAE_MDA_Patient_IOSSDK.framework #End Region fatal error: 'HIAE_MDA_Patient_IOSSDK' file not found #import "HIAE_MDA_Patient_IOSSDK" ^~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. Hello, what am I doing wrong? Upvote 0
#Region Project Attributes ... #AdditionalLib: HIAE_MDA_Patient_IOSSDK.framework #End Region fatal error: 'HIAE_MDA_Patient_IOSSDK' file not found #import "HIAE_MDA_Patient_IOSSDK" ^~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. Hello, what am I doing wrong?
Erel B4X founder Staff member Licensed User Longtime User Nov 23, 2022 #4 Change this: #AdditionalLib: HIAE_MDA_Patient_IOSSDK.framework to: B4X: #AdditionalLib: HIAE_MDA_Patient_IOSSDK.framework.3 Upvote 0
Change this: #AdditionalLib: HIAE_MDA_Patient_IOSSDK.framework to: B4X: #AdditionalLib: HIAE_MDA_Patient_IOSSDK.framework.3
H Henrique Neri Member Nov 23, 2022 #5 How do I run the code below with #if objc or with NativeObject let vc = ConferenceViewController(nibName: btnBeneficios_Click, bundle: nil) vc.urlConference = "http://exemplo.com.br" vc.modalPresentationStyle = .overFullScreen self.present(vc,animated:False, completion: nil) Upvote 0
How do I run the code below with #if objc or with NativeObject let vc = ConferenceViewController(nibName: btnBeneficios_Click, bundle: nil) vc.urlConference = "http://exemplo.com.br" vc.modalPresentationStyle = .overFullScreen self.present(vc,animated:False, completion: nil)
Erel B4X founder Staff member Licensed User Longtime User Nov 23, 2022 #6 1. This is swift code. 2. Accessing native libraries requires some OBJC knowledge. Upvote 0