S sarmanho Member Licensed User Longtime User Mar 10, 2015 #1 This code worked nicely for me. That native objects IOS we can access? Dim no As NativeObject = YourLocalNotification no.SetField("repeatInterval", 16) '16 - daily, 32 - every hour, 64 - every minute
This code worked nicely for me. That native objects IOS we can access? Dim no As NativeObject = YourLocalNotification no.SetField("repeatInterval", 16) '16 - daily, 32 - every hour, 64 - every minute
Erel B4X founder Staff member Licensed User Longtime User Mar 10, 2015 #2 NativeObject is similar to B4A JavaObject (or Reflector). It allows you to call native methods. It is good for simple API calls. The inline OBJC blocks are more powerful. Upvote 0
NativeObject is similar to B4A JavaObject (or Reflector). It allows you to call native methods. It is good for simple API calls. The inline OBJC blocks are more powerful.