標籤:ios openflow 布局
環境:xcode5.1+ios7.1+openflow+ipad
說明:在view 添加openflow,xib是其他視圖為自動布局;ipad橫屏時 水平線未滿屏;修改openflow的refreshCoverFlow方法如下:
//設定openflow的大小
AFOpenFlowView *coverFlowView = [[AFOpenFlowView alloc] initWithFrame:CGRectMake(0, 50, self.view.frame.size.width, self.view.frame.size.height-100)];
coverFlowView.translatesAutoresizingMaskIntoConstraints = NO; //禁用自動布局 NSDictionary *viewsbg = NSDictionaryOfVariableBindings(self.view,coverFlowView); [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"|-0-[coverFlowView]-0-|" options:0 metrics:0 views:viewsbg]]; // [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"|-0-[bgImage]-0-|" options:0 metrics:0 views:viewsbg]]; [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-50-[coverFlowView]-50-|" options:0 metrics:0 views:viewsbg]]; |
ios openflow 自動布局及大小