Steps / ideas for Iphone code, for example, the user interface for the application

Can someone shed light on creating an iphone code, such as an interface? Is there an API for reusing an Iphone passcode for an application?

+3
source share
2 answers

Use a grid of custom views UIButtoninside the parent UIView. You can put this in a modal view controller to make it look more like an authentication popup.

You can connect the access code data model to Keychain for iPhone to ensure privileged data security. Scifihifi wrapper methods are really useful for this purpose.

0
source

I wrote a KeyPad that can be configured through a delegate.

0
source

Source: https://habr.com/ru/post/1744420/


All Articles