摇一摇功能: -(void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{ NSLog(@"开始摇一摇"); }-(void)motionEnded:(UIEventSubtype)motion withEvent:(UI ...
分类:
其他好文 时间:
2016-04-25 13:15:53
阅读次数:
111
## 01-真机调试### 什么是真机调试? :: 简单理解就是将App项目运行到真机上进行测试### 为什么要运行到真机上? *真机和模拟器环境的差异* :: 内存环境,网络环境; :: 传感器: 磁力计,陀螺仪,距离传感器等; :: 特定功能:打电话,发短信,蓝牙等。 :: 用户体验不一样 ** ...
分类:
移动开发 时间:
2016-04-06 00:24:28
阅读次数:
301
1 import android.app.Activity; 2 import android.content.Context; 3 import android.hardware.Sensor; 4 import android.hardware.SensorEvent; 5 import and
分类:
移动开发 时间:
2016-02-22 17:49:16
阅读次数:
259
- (void)ViewDidLoad { // 打开距离传感器,开启距离检测功能 [UIDevice currentDevice].proximityMonitoringEnabled = YES;// 监听距离改变 [[NSNotificationCenter defaultCent...
分类:
其他好文 时间:
2015-11-06 12:35:34
阅读次数:
147
Android的传感器主要包括八大传感器,他们分别是:加速度传感器(accelerometer)、陀螺仪(gyroscope)、方向传感器(orientation)、磁力传感器(magnetic field)、环境光照传感器(light)、温度传感器(temperature)、距离传感器(prox....
分类:
移动开发 时间:
2015-11-05 23:51:35
阅读次数:
385
// 距离传感器// 温度传感器// 磁力传感器// 光传感器// 湿度传感器// 陀螺仪 -- 导航, 赛车游戏(角速度传感器)// 运动传感器 - 加速度传感器 -- 摇一摇, 计步器//#import "ViewController.h"@interface ViewController ()...
分类:
其他好文 时间:
2015-09-23 19:28:31
阅读次数:
237
概述sensoriPhone自带很多传感器,常见的如下表所示:系统针对各种sensor都有相应的使用方法,eg: 距离传感器使用// 开启距离感应功能[UIDevice currentDevice].proximityMonitoringEnabled = YES;// 监听距离感应的通知[[NSN...
分类:
其他好文 时间:
2015-09-04 12:24:17
阅读次数:
220
iPhone上的距离传感器通过UIDevice开启,开启后系统以Notification的方式通知。
①开启距离传感器,监听通知:
- (void)viewDidLoad {
[super viewDidLoad];
// 开启传感器在iOS3之后通过UIDevice的currentDevice的proximityMonitoringEnabled设置
[UIDevi...
分类:
其他好文 时间:
2015-07-27 23:01:59
阅读次数:
157
//距离传感器,以注册通知的形式来实现的#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]....
分类:
移动开发 时间:
2015-07-19 21:42:16
阅读次数:
212
1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)application:(UIApplication *)appl...
分类:
移动开发 时间:
2015-07-06 23:14:08
阅读次数:
219