本地推送
猴子和派大星
这个作者很懒,什么都没留下…
展开
-
本地推送
1.创建开关如图操作2.开关为OFF3.拖拽后Connection选择Action4.Type选择UISwitch5.ViewController中点击开关按钮if(sender.on == YES){ UILocalNotification *local=[[UILocalNotification alloc]init]; //设置通知的标题 ...原创 2018-10-12 18:53:52 · 109 阅读 · 0 评论 -
面部识别
#import “ViewController.h”#import “one1ViewController.h”#import <LocalAuthentication/LocalAuthentication.h>@interface ViewController ()@property (nonatomic,strong)LAContext *laCtx;//TouchID管...原创 2018-10-20 12:35:16 · 335 阅读 · 0 评论 -
登入进行面部识别扫码跳转
1.导入一下数据库2.创建新文件COM+N记得勾选Also create XIB file3.创建新文件 选择macOS中的Objective-c File文件注意:⚠️File Type:(为Category)文件 class:为NSString类型4.在NSString+regular.h中//声明+(BOOL)judgePassWordLegal:(NSString *)...原创 2018-10-20 16:16:07 · 707 阅读 · 0 评论 -
下拉菜单
1.导入coco pod ‘MLMenu’2.V.m中写头文件#import <MLMenu/MLMenuView.h>#define MLClolor(r,g,b,a) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:a]#define k_ScreenHeight [UIScreen...原创 2018-11-05 14:27:26 · 132 阅读 · 0 评论 -
底部弹窗
1.V.M- (void)viewDidLoad { [super viewDidLoad]; //设置背景色 self.view.backgroundColor = [UIColor yellowColor]; //弹出按钮 UIButton *alertBt = [UIButton buttonWithType:UIButtonTypeSystem];...原创 2018-11-05 16:42:54 · 231 阅读 · 0 评论