您的位置:首页 > 其它

欢迎使用CSDN-markdown编辑器

2016-01-06 14:40 721 查看
```
//系统使用,如电量低,突然来
-(void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event{
NSLog(@"触摸取消");
}

一摇开始
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
-
NSLog(@"摇一摇开始");
self.view.backgroundColor = [UIColor colorWithRed:arc4random()%256 / 255.0 green:arc4random()%256 / 255.0 blue:arc4random()%256 / 255.0 alpha:1.0];
}

//摇一摇结束
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{
NSLog(@"摇一摇结束");
}

//摇一摇取消
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event{

}


“`
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: