Tips and Frequently Asked Questions

How to verify if TouchID is available on the device
As soon as you add the LocalAuthentication component, you are bound to iOS 8.0. The component already internally checks if authentication is possible before executing it. There is currently no separate verification but if you want to verify if TouchID is available you can use the following code (it requires the FMX.TMSNativeUICore unit)
function TForm1.TouchIDAvailable: Boolean;
var
ctx: LAContext;
error: PPointer;
auth: NativeInt;
begin
result := False;
ctx := TLAContext.Wrap(TLAContext.Wrap(TLAContext.OCClass.alloc).init);
error := nil;
auth := LAPolicyDeviceOwnerAuthenticationWithBiometrics;
if ctx.canEvaluatePolicy(auth, error) then
Result := True;
ctx.release;
end;
Pricing
Single Developer License
Small Team License
Site License
TMS iCL
€ 125
€
75
yearly renewal
license for 1 developer
Includes
check
Full source code
check
Access to the TMS Support Center
check
Free updates and new releases
BEST VALUE
TMS ALL-ACCESS
€ 1,795
€
595
yearly renewal
license for 1 developer
Includes
check
Full source code
check
Access to the TMS Support Center
check
Free updates and new releases
check
TMS iCL
check
All TMS FMX products
check
All TMS products
more_horiz
Discover more
All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license.