zoukankan      html  css  js  c++  java
  • 如何侦听iphone设备方向改变事件,以及如何添加事件的处理事件

    添加侦听IPhone,ipad设备方向改变事件的方法

    参考代码:

     [[NSNotificationCenterdefaultCenter]

      addObserver: self

          selector:@selector(orientationChanged)

         name:UIDeviceOrientationDidChangeNotificationobject:

         nil];


    /*

    设备方向改变后添加的处理事件

    */

    - (void) orientationChanged

    {

         UIDeviceOrientation deviceOrientation = [[UIDevice currentDevice] orientation];//获取当前设备的方向

    }

     

    /*

     设备可能的方向

    */

    typedefenum {

        UIDeviceOrientationUnknown,

        UIDeviceOrientationPortrait,            // Device oriented vertically, home button on the bottom

        UIDeviceOrientationPortraitUpsideDown// Device oriented vertically, home button on the top

        UIDeviceOrientationLandscapeLeft,       // Device oriented horizontally, home button on the right

        UIDeviceOrientationLandscapeRight,      // Device oriented horizontally, home button on the left

        UIDeviceOrientationFaceUp,              // Device oriented flat, face up

        UIDeviceOrientationFaceDown             // Device oriented flat, face down

    } UIDeviceOrientation;



    THE END!

    2011-11-04

  • 相关阅读:
    WPF复杂形状按钮
    (WPF)360安全卫士界面设计
    WPF图标拾取器
    WPF透明窗体制作
    空间分析开源库GEOS
    GIS开源程序收集
    flask 链接 url_for()
    自定制404错误页码
    Flask 模板语言
    flask路由和视图和cookie
  • 原文地址:https://www.cnblogs.com/xingchen/p/2235767.html
Copyright © 2011-2022 走看看