Hi All
I'm working on a little iOS app and would like to use some of the iPhone native controls. Unfortunately when i include iphoneControl... commands or functions, LiveCode reports an error at runtime that the handler can't be found.
Am I missing something? Is there some optional module I should load/enable? I'm able to load my app (without iphoneControl calls) on my device, so I think I have the basic setup correct.
TIA
Bill
iphoneControl handlers not found
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: iphoneControl handlers not found
Hi Bill,
unfortunately the IDE does not recognize special mobile commands and reports an error!
You need to use an IF THEN clause to use them:
Best
Klaus
unfortunately the IDE does not recognize special mobile commands and reports an error!
You need to use an IF THEN clause to use them:
Code: Select all
...
if the environment = "mobile" then
## do iOS Stuff here
end if
...
Klaus
Re: iphoneControl handlers not found
Thanks Klaus!
That was my problem.
Bill
That was my problem.
Bill