蚂蚁密码本是一款专注记录密码的app,侧重的地方主要是便利性、代码效率、稳定性、安全性,这些都是作为一个软件需要注意提升的地方。在参考市面上的密码工具之后,推出了这款专注、安全无广告的手机app。
简要描述:
- 通过该文档,可以快速将密码导入到蚂蚁密码本密码本
Scheme URL参数:
蚂蚁密码本APP | Scheme url |
---|---|
蚂蚁密码本本地版 | huaimayiwordbooklocal:// |
蚂蚁密码本专业版 | huaimayiwordbookpro:// |
传值类型参数:
参数名 | 类型说明 |
---|---|
typeCard | 卡片类型 |
typeSocial | 社交类型 |
typeWeb | 网站网址 |
typeGame | 游戏类型 |
传值代码参考示例
因为有可能url中会含有中文,所以推荐使用下面代码传值
NSDictionary *dic = [[NSDictionary alloc] init];
NSString *str =[NSString stringWithFormat:@"huaimayiwordbookpro://typeWeb?%@?%@?%@",@"新浪网",@"UserName",@"Password"];
str = [str stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLFragmentAllowedCharacterSet]];
NSURL *url = [NSURL URLWithString:str];
[[UIApplication sharedApplication] openURL:url options:dic completionHandler:nil];
版权属于:东哥笔记 - DongGe.org
本文链接:https://dongge.org/blog/479.html
自2017年12月26日起,『转载以及大段采集进行后续编辑』须注明本文标题和链接!否则禁止所有转载和采集行为!
2 条评论
不错!写的很棒!希望博主开发出更多实用性APP
谢谢鼓励