1.加入 AddressBook库 推断授权状态 -(bool)checkAddressBookAuthorizationStatus { //取得授权状态 ABAuthorizationStatus authStatus = ABAddressBookGetAuthorizationStatus(); if (authStatus !=kABAuthorizationStatusAuthorized) { returnNO; }else{ returnYES; } } 注冊 通讯录变更通知 -…
#import "DeviceInfoUtil.h" #import "GlobleData.h" #import "sys/utsname.h" #import <AdSupport/AdSupport.h> #import <ifaddrs.h> #import <arpa/inet.h> #import <sys/sockio.h> #import <sys/ioctl.h> #i…
技术内容:分别读取相册以及调取相机,将图片显示到imageView上 布局: 1.创建imageView 和 button 并为button一个关联pickerImage的事件 <div style="text-align: left;"><span style="font-family: Helvetica; -webkit-text-stroke-width: initial;"> self.aImageView = [[UIImageV…
最近在做一个需要上下位机的项目,我负责的任务下位机,使用的主控芯片是esp32.这个项目中有一项是需要手机扫描二维码然后连接作为esp32的蓝牙.二维码中包含了mac地址信息,在手机扫描周围设备的时候通过mac地址筛选出目标设备,然后建立连接.在安卓系统上进展顺利,但是在ios上的时候,这个过程遇到的问题,ios中无法直接获取蓝牙的mac地址.写上位机的负责人发给了我一个链接https://www.jianshu.com/p/1d6a8fc8134f.这个解决方案虽然不是esp32的,但是了解了…
// //  ViewController.m //  TouchID指纹验证 // //  Created by apple on 16/9/18. //  Copyright © 2016年 apple. All rights reserved. // #import "ViewController.h" #import "HomeViewController.h"//跳转成功后需要跳转到的视图控制器 #import <LocalAuthenticatio…
首先导入四个头文件 #include <sys/types.h> #include <sys/sysctl.h> #include <ifaddrs.h> #include <arpa/inet.h> 获取设备型号: + (NSString *) platform { size_t size; sysctlbyname(); char *machine = malloc(size); sysctlbyname(); NSString *platform =…
新添加判断iPhone 7.iPhone 7 Plus ,我手里没有7,判断不对表打我~ FQ找的资料:http://www.iphonehacks.com/download-iphone-ios-firmware 1.手机系统:iPhone OS NSString* phoneVersion = [[UIDevice currentDevice] systemVersion]; 2.手机类型:iPhone 6 NSString* phoneModel = [self iphoneType];/…
Safari Any URL starting with http:// which does not point to maps.google.com or www.youtube.com is sent to Safari: NSString *stringURL = @"http://wiki.akosma.com/"; NSURL *url = [NSURL URLWithString:stringURL]; [[UIApplication sharedApplication]…
#include <ifaddrs.h> #include <arpa/inet.h>     - (NSString *)getIPAddress {           NSString *address = @"error";     struct ifaddrs *interfaces = NULL;     struct ifaddrs *temp_addr = NULL;     int success = 0;           // retri…
NSString *ssid = @"Not Found"; NSString *macIp = @"Not Found"; CFArrayRef myArray = CNCopySupportedInterfaces(); if (myArray != nil) { CFDictionaryRef myDict = CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray, 0)); if (myDict !=…