A iOS7 Style Grid PassWord View by Objective-C
iOS8 or higher
CocoaPods:
pod 'TYGridPassWord'
Carthage:
github "tinyxx/TYGridPassWord"
It is quite easy to use:
TYGridPassWordView *gridPassWordView = [[TYGridPassWordView alloc] init];
gridPassWordView.delegate = delegateObj;
[superView addSubView:gridPassWordView];TYGridPassWordViewDelegate:
- (BOOL)gridPassWordViewCapturePassWord:(NSString *)passWord
{
if ([passWord isEqualToString:PassWordUserSetBefore])
{
return YES;
}
return NO;
}For more infomation, please check the demo project, Thanks!
MIT LICENSE
