IOS 7にバグのように見える問題があるか、正しく処理していません。 ModalPresentationStyleを使用してiPadでポップオーバーとして表示されるmodalViewControllerがあります。そして、それは標準サイズではなく、カスタムサイズです。コードは次のとおりです。
myViewController *myVC = [[myViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:myVC];
[nav setModalPresentationStyle:UIModalPresentationFormSheet];
[nav setModalTransitionStyle: UIModalTransitionStyleFlipHorizontal];
[self presentViewController:nav animated:YES completion:nil];
nav.view.superview.bounds = CGRectMake(0, 0, 320, 465);
IOS 6ではすべて正常に機能していますが、iOS7では中央に配置されていません。しかし、ModalTransitionStyleをUIModalTransitionStyleCrossDissolveに設定すると、正常に機能します。ただし、このモードでのみ。たぶん誰かがこれにもつまずいて、それを修正する方法を知っていますか?私はディゾルブ効果の大ファンではありません。ありがとうございました。
iOS <=7
を設定しても、古いカスタムモーダルプレゼンテーションスタイルfromsheet
がcustom height and width
で機能する方法があります。
このメソッドは将来新しいバージョンでは機能しない可能性があることに注意してください
- (void) hackModalSheetSize:(CGSize) aSize ofVC:(UIViewController *) aController;
{
void (^formSheetBlock) (void) = ^{
int preferredWidth = aSize.width;
int preferredHeight = aSize.height;
CGRect frame = CGRectMake((int) 1024/2 - preferredWidth/2,
(int) 768/2 - preferredHeight/2,
preferredWidth, preferredHeight);
aController.view.superview.frame = frame;
if([aController respondsToSelector:@selector(edgesForExtendedLayout)]) { //ios7
aController.view.superview.backgroundColor = [UIColor clearColor];
} else { // < ios7
UIImageView *backgroundView = [aController.view.superview.subviews objectAtIndex:0];
[backgroundView removeFromSuperview];
}
};
//on ios < 7 the animation would be not as smooth as on the older versions so do it immediately
if(![self respondsToSelector:@selector(edgesForExtendedLayout)]) {
formSheetBlock();
return;
}
double delayInSeconds = .05;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
formSheetBlock();
});
}
私も同じ問題を抱えていました。私は別のアプローチを使用してこれを解決しました ここ 。
このソリューションが提案するのは、メソッド_(void)viewWillLayoutSubviews
_を使用することです。
したがって、GeneralSettingsViewController
内の@ManuelM。の場合は、以下のコードを追加します。
_// GeneralSettingsViewController
- (void)viewWillLayoutSubviews{
[super viewWillLayoutSubviews];
self.view.superview.bounds = CGRectMake(0, 0, 497, 375);
}
_
そして、あなたはもうこのコードを必要としません:
_self.generalSettingsVC.view.superview.frame = CGRectMake(0, 0, 497, 375);
self.generalSettingsVC.view.superview.center = self.view.center;
_
@titicacaの場合、UINavigationController
を使用しています。このコントローラーではテストしていませんが、UINavigationController
を拡張し、viewWillLayoutSubviews
を上書きして、前述したのと同じソリューションを試すことができます。方法。
[編集]
@titicacaの場合、新しいプロジェクトで試してみましたが、うまくいきました。私がしたことは、カスタムナビゲーションビューコントローラーCustomNavigationController
がviewWillLayoutSubviews
をオーバーライドすることでした。
_- (void)viewWillLayoutSubviews{
[super viewWillLayoutSubviews];
self.view.superview.bounds = CGRectMake(0, 0, 330, 284);
}
_
次に、CustomNavigationController
を提示するViewControllerは、次のようなコードを実行する必要があります。
_UIViewController *myVC = [[UIViewController alloc] init];
[myVC.view setBackgroundColor:[UIColor redColor]];
CustomNavigationController *nav = [[CustomNavigationController alloc] initWithRootViewController:myVC];
[nav setModalPresentationStyle:UIModalPresentationFormSheet];
[nav setModalTransitionStyle: UIModalTransitionStyleFlipHorizontal];
[self presentViewController:nav animated:YES completion:nil];
_
ただし、self.view.superview.bounds = CGRectMake(0, 0, 330, 284);
の次元が偶数であることを確認する必要があります。そうでない場合、内部のテキストがあいまいになります。
私にとっての問題は、提示されたViewControllerのbecomeFirstResponder
のテキストフィールドでviewDidAppear
を呼び出すことでした。今はそれのバグのようです。解決策は、それを単純なdispatch_async
でラップすることでした。
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
dispatch_async(dispatch_get_main_queue(), ^{
[self.userNameTextField becomeFirstResponder];
});
}
それは私にとっても同じです...私はまだそれを解決する方法がわかりません。私は現在その問題に取り組んでいるので、私が得たものは何でもそれを共有します!
これは私のコードです。
-(IBAction)showGeneralSettings:(id)sender{
self.generalSettingsVC = [[GeneralSettingsViewController alloc] initWithNibName:@"GeneralSettingsView" bundle:nil];
//Present the view controller as a modal with a custom size (important to do after presenting it)
self.generalSettingsVC.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:self.generalSettingsVC animated:YES completion:nil];
self.generalSettingsVC.view.superview.frame = CGRectMake(0, 0, 497, 375);
self.generalSettingsVC.view.superview.center = self.view.center;
}
上記の解決策は私にはうまくいきませんでした。私は以下を使用しました:
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:theViewController];
navigationController.modalPresentationStyle=UIModalPresentationFormSheet;
[self presentViewController:navigationController animated:YES completion:nil];
if([[UIDevice currentDevice] userInterfaceIdiom] != UIUserInterfaceIdiomPhone){
navigationController.view.superview.frame = CGRectMake(0, 0, 320, 544);
navigationController.view.frame =CGRectMake(108, 0, 320, 544);
navigationController.view.superview.backgroundColor=[UIColor clearColor];
}
サブクラス化されたナビゲーションコントローラーとSwiftのAutoLayoutを使用して、これについて少し異なる方法で、設定された幅と高さでスーパービューのビューを中央に配置しました。私の特定のケースでは、iPadとiOS7-8のサポートが必要でした(このコードには私のプロジェクトに固有の定数がいくつかありますが、あなたはその考えを理解しています)...
class CenteredModalNavigationController: UINavigationController {
// MARK:- Methods
override func viewDidLoad() {
super.viewDidLoad()
preferredContentSize = CGSizeMake(320, 480) // iOS8 only
}
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
// iOS7 support for iPad custom sized form-sheet modal.
if kDeviceiOS7 && kDeviceiPad {
if view.superview == nil {
Log.warning("Failed to find superview")
return
}
view.superview!.setTranslatesAutoresizingMaskIntoConstraints(false)
// Give the superview constraints to center the view inside it.
var viewBindingsDict: NSMutableDictionary = NSMutableDictionary()
viewBindingsDict.setValue(view, forKey: "view")
viewBindingsDict.setValue(view.superview!, forKey: "superview")
let centerXConstraints = NSLayoutConstraint.constraintsWithVisualFormat("V:[superview]-(<=1)-[view]",
options: .AlignAllCenterX,
metrics: nil,
views: viewBindingsDict)
view.superview!.addConstraints(centerXConstraints)
let centerYConstraints = NSLayoutConstraint.constraintsWithVisualFormat("H:[superview]-(<=1)-[view]",
options: .AlignAllCenterY,
metrics: nil,
views: viewBindingsDict)
view.superview!.addConstraints(centerYConstraints)
// Now give it a width/height and it should float in the middle of our superview.
AutoLayoutHelper.addWidthConstraint(view,
aSuperView: view.superview!,
width: 320)
AutoLayoutHelper.addHeightConstraint(view,
aSuperView: view.superview!,
height: 480)
}
}
override func prefersStatusBarHidden() -> Bool {
return true
}
override func disablesAutomaticKeyboardDismissal() -> Bool {
// DEVNOTE: Because this is shown in a modal, this is required to stop keyboard dismiss issues.
return true
}
}
.。
class AutoLayoutHelper: NSObject {
class func addHeightConstraint(aChildView:UIView, aSuperView:UIView, height:CGFloat) {
var constraint = NSLayoutConstraint(item: aChildView,
attribute: NSLayoutAttribute.Height,
relatedBy: NSLayoutRelation.Equal,
toItem: nil,
attribute: NSLayoutAttribute.NotAnAttribute,
multiplier: 1.0,
constant: height)
aSuperView.addConstraint(constraint)
}
class func addWidthConstraint(aChildView:UIView, aSuperView:UIView, width:CGFloat) {
var constraint = NSLayoutConstraint(item: aChildView,
attribute: NSLayoutAttribute.Width,
relatedBy: NSLayoutRelation.Equal,
toItem: nil,
attribute: NSLayoutAttribute.NotAnAttribute,
multiplier: 1.0,
constant: width)
aSuperView.addConstraint(constraint)
}
}