Is there any way to check my application is enable with TouchID,
How can i check if my application is enable with TouchID,
For example :
DropBox have capability to enable figure print sensor enable. now is there any method to check if my application showing TouchID screen based on touchid enable.
According you use Objective-C
First, add method to check iOS Version
TouchID
needs iOS8+ to workThen, use
LAContext
canEvaluatePolicy:error:
to evaluate ifTouchID
existassuming ios 8+ deployment target
in case you still need to support ios7 do the extra hoop
You do not want to check the iOS version, sure, it might work but it is a bad practice. Check for the feature instead. See if LAContext is available.