摘要: https://www.jianshu.com/p/5fc26af852b6 传感器集锦:指纹识别、运动传感器、加速计、环境光感、距离传感器、磁力计、陀螺仪 效果预览.gif 一、指纹识别 应用:指纹解锁、指纹登录、指纹支付 苹果从iPhone5S开始,具有指纹识别技术,从iOS8.0之后苹果允许第 阅读全文
posted @ 2019-01-25 15:06 sundaysios 阅读(515) 评论(0) 推荐(0) 编辑
摘要: iBeacon组成信息: 1 、UUID(universally unique identifier):一个128位的唯一标识一个或多个Beacon基站为特定类型或特定的组织。 2、 Major:一个16位的无符号整数,可以将具有相同proximity UUID的Beacon基站组织联系起来。(用户 阅读全文
posted @ 2019-01-25 14:34 sundaysios 阅读(2126) 评论(1) 推荐(0) 编辑
摘要: iBeacon概述 iBeacon是苹果公司2013年9月发布的移动设备用OS(iOS7)上配备的新功能。其工作方式是,配备有低功耗蓝牙(BLE)通信功能的设备使用BLE技术向周围发送自己特有的ID,接收到该ID的应用软件会根据该ID采取一些行动。比如,在店铺里设置iBeacon通信模块的话,便可让 阅读全文
posted @ 2019-01-25 14:21 sundaysios 阅读(1200) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/ce8cfaf6030e 2017.11.29 16:05* 字数 452 阅读 302评论 0喜欢 1 2017.11.29 16:05* 字数 452 阅读 302评论 0喜欢 1 2017.11.29 16:05* 字数 452 阅读 302 阅读全文
posted @ 2019-01-25 12:18 sundaysios 阅读(845) 评论(0) 推荐(0) 编辑
摘要: 2017.11.20 14:41* 字数 227 阅读 678评论 0喜欢 0 钥匙串介绍 1. 表示设备唯一号的标识,在IOS7中要么被禁止使用,要么重新安装程序后两次获取的标识符不一样。 2. 由于IOS系统存储的数据都是在sandBox里面,一旦删除App,sandBox也不复存在。好在有一个 阅读全文
posted @ 2019-01-25 11:34 sundaysios 阅读(1143) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/2d3f048511d7 2017.04.17 16:22* 字数 62 阅读 422评论 0喜欢 1 可以在App内部实现检测版本更新并实现安装。 核心代码 #define API_PGYER_UPDATE_URL @"https://www.p 阅读全文
posted @ 2019-01-25 11:11 sundaysios 阅读(1389) 评论(0) 推荐(0) 编辑
摘要: @interface UIButton (CBNavgationItem) + (UIButton *)cb_buttonWith:(UIButtonType)buttonType; - (void)cbSet_Enable:(BOOL)isEnable; @end #import "UIButto 阅读全文
posted @ 2019-01-25 10:04 sundaysios 阅读(86) 评论(0) 推荐(0) 编辑
摘要: @interface UIViewController (CBNib) + (instancetype)loadFromNib; + (instancetype)loadNibWithName:(NSString *)nibName; @end #import "UIViewController+C 阅读全文
posted @ 2019-01-25 10:02 sundaysios 阅读(459) 评论(0) 推荐(0) 编辑
摘要: #import <CoreLocation/CoreLocation.h> class <CLLocationManagerDelegate> { CLLocationManager * locationManager; NSString * currentCity; //当前城市 } #pragm 阅读全文
posted @ 2019-01-25 09:48 sundaysios 阅读(998) 评论(0) 推荐(0) 编辑
摘要: #import <YYKit/YYKit.h> #import <SDWebImage/UIImageView+WebCache.h> @interface UIImageView (Extension) // 没有占位图片 - (void)setHeaderUrl:(NSString *)url; 阅读全文
posted @ 2019-01-25 09:35 sundaysios 阅读(133) 评论(0) 推荐(0) 编辑
摘要: @interface UIView (ExtensionTV) //设置Uiview的背景为图片 - (void)sd_setBGImageWithName:(NSString *)imageName; @end #import "UIView+ExtensionTV.h" #import "UII 阅读全文
posted @ 2019-01-25 09:33 sundaysios 阅读(180) 评论(0) 推荐(0) 编辑