I have the following code in a project I am working on, but for some reason the raiseEvent method is not being triggered, I can see the methods inside this inline code working as I can see the logs from each method, What is the correct format for the raiseEvent function?
And this is how that inline objective C code is being used in my project
B4X:
Sub ConfigureRemoteCommandCenter
Dim remoteCommandCenterHelper As NativeObject = Me
remoteCommandCenterHelper.Initialize("RemoteCommandCenterHelper").RunMethod("new", Null)
remoteCommandCenterHelper.RunMethod("configureRemoteCommandCenter", Null)
End Sub