iOS屏幕变换的处理(2)

上一节提到了通过通知来处理屏幕视图的自动翻转。

蓝色的子视图,在翻转的情况下触发界面大小的调整。

还是使用通知机制,即:

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(doRotateAction:)
                                             name:@"UIDeviceOrientationDidChangeNotification"
                                           object:nil];

 

不过,这里发现了个问题,当执行通知触发方法的时候,发现总是执行了多次。其中多出来的情况,设备的方向是不对的:

[UIDevice currentDevice].orientation==UIDeviceOrientationUnknown

 

如上面代码,返回的值是UIDeviceOrientationUnknown,也就是0。只许过滤这种情况即可,下面是比较完整的视图实现代码:

@implementation ContentView

-(id)initWithCoder:(NSCoder *)aDecoder{
    self = [super initWithCoder:aDecoder];
    if (self) {
        [[NSNotificationCenter defaultCenter] addObserver:self
                                                 selector:@selector(doRotateAction:)
                                                     name:@”UIDeviceOrientationDidChangeNotification”
                                                   object:nil];
    }
    return self;
}

-(void) doRotateAction:(NSNotification *) notification{
    if([UIDevice currentDevice].orientation!=UIDeviceOrientationUnknown){
        NSLog(@”do rotate action: %d”,[[notification object] orientation]);
        if([UIDevice currentDevice].orientation==UIDeviceOrientationPortrait||
           [UIDevice currentDevice].orientation==UIDeviceOrientationPortraitUpsideDown){
            self.frame=CGRectMake(self.frame.origin.x, self.frame.origin.y, 200, 200);
        }else{
            self.frame=CGRectMake(self.frame.origin.x, self.frame.origin.y, 600, 500);
        }
    }
}

-(void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}


 

原文地址:http://marshal.easymorse.com/archives/4723

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值