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

 

发布了7 篇原创文章 · 获赞 7 · 访问量 9万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章