BallViewController.m
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. #import "BallViewController.h"
  2. #import "BallView.h"
  3. @implementation BallViewController
  4. - (void)viewDidLoad {
  5. UIAccelerometer *accelerometer = [UIAccelerometer sharedAccelerometer];
  6. accelerometer.delegate = self;
  7. accelerometer.updateInterval =  kUpdateInterval;
  8. [super viewDidLoad];
  9. }
  10. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
  11. // Return YES for supported orientations
  12. return (interfaceOrientation == UIInterfaceOrientationPortrait);
  13. }
  14. - (void)didReceiveMemoryWarning {
  15. [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
  16. // Release anything that's not essential, such as cached data
  17. }
  18. - (void)dealloc {
  19. [super dealloc];
  20. }
  21. - (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration {
  22. [(BallView *)self.view setAcceleration:acceleration];
  23. [(BallView *)self.view draw];
  24. }
  25. @end