web-dev-qa-db-ja.com

UIViewからpresentViewControllerを使用する

IOSアプリケーションのタイトルバーを作成し、UIView内で作成しています。私が持っている唯一の問題は「ホームボタン」にあります。ホームボタンが押されたとき、それはViewControllerであるホームページに移動する必要があります。

ただし、UIViewで[self presentViewController:vc animated:NO completion:NULL];が機能するようには見えません。

この問題を回避するにはどうすればよいですか?

- (void) createTitlebar {

    CGRect titleBarFrame = CGRectMake(0, 0, 320, 55);

    //Create the home button on the top right of the page. When clicked, it will navigate to the home page of the application
    homeButton = [UIButton buttonWithType:UIButtonTypeCustom];
    homeButton.frame = CGRectMake(275, 10, 40, 40);
    [homeButton setTag:1];
    [homeButton setImage:[UIImage imageNamed:@"homeIcon.png"] forState:UIControlStateNormal];
    [homeButton addTarget:self action:@selector(homeButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
    [self addSubview:homeButton];
}

- (IBAction)homeButtonPressed:(id)sender{

    //Transition to the submit button page
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
    ViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"ViewController"];
    [vc setModalPresentationStyle:UIModalPresentationFullScreen];
    [self presentViewController:vc animated:NO completion:NULL];
}
21
Ashish Agarwal

UIViewControllerのみが別のビューコントローラーを表示できるため、ビューからビューコントローラーを表示する必要がある場合、いくつかの方法がありますが、そのうちの1つは次のようになります。

親ビューが配置されているビューコントローラをその代理オブジェクトにする

ParentView *view = [ParentView new];
...
view.delegate = self;

次に、そのデリゲートのParentView呼び出しメソッド内

- (IBAction)homeButtonPressed:(id)sender {
    [self.delegate buttonPressed];
}

そして、あなたのVC implement

 -(void)buttonPressed {
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
    ViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"ViewController"];
    [vc setModalPresentationStyle:UIModalPresentationFullScreen];
    [self presentViewController:vc animated:NO completion:NULL];
}

このコードをUIView内に保持し、委任を回避する必要がある場合は、このようなトリックを実行できます(個人的には好きではありませんが、機能するはずです)。

-(void)buttonPressed{
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
    ViewController *vc = [storyboard      instantiateViewControllerWithIdentifier:@"ViewController"];
    [vc setModalPresentationStyle:UIModalPresentationFullScreen];
    [(UIViewController*)self.nextResonder presentViewController:vc animated:NO completion:NULL];
}
17
alex

デリゲートパターンを使用せずにこれを行うことができます。どうぞ

ObjectiveC

UIViewController *currentTopVC = [self currentTopViewController];
currentTopVC.presentViewController......... 

- (UIViewController *)currentTopViewController {
    UIViewController *topVC = [[[[UIApplication sharedApplication] delegate] window] rootViewController];
    while (topVC.presentedViewController) {
        topVC = topVC.presentedViewController;
    }
    return topVC;
}

スウィフト

var topVC = UIApplication.sharedApplication().keyWindow?.rootViewController
while((topVC!.presentedViewController) != nil) {
     topVC = topVC!.presentedViewController
}
topVC?.presentViewController........
39
Shamsudheen TK

これはより慣用的なSwift Shamsudheenの回答の3バージョンです。

extension UIApplication {

    static func topViewController() -> UIViewController? {
        guard var top = shared.keyWindow?.rootViewController else {
            return nil
        }
        while let next = top.presentedViewController {
            top = next
        }
        return top
    } 
}

その後、単に呼び出すことができます:

UIApplication.topViewController()?.present(...)
4
Hans Brende

以下のコードを試すことができます

 UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
 ViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"ViewController"];
 UIViewController *vc1 = [UIApplication sharedApplication].keyWindow.rootViewController;
 [vc1 presentViewController:vc animated:YES completion:nil]; 
2
Hardik Thakkar

With Swift 4-4.2 Shamsudheen TKの回答に追加します。

var topVC = UIApplication.shared.keyWindow?.rootViewController
    while((topVC!.presentedViewController) != nil) {
        topVC = topVC!.presentedViewController
    }
    let customViewController = CustomViewController()
    topVC?.present(customViewController, animated: true, completion: nil)

With UINavigationController:これも追加機能です-> customViewControllerでUINavigationControllerを渡すことができます。

 var topVC = UIApplication.shared.keyWindow?.rootViewController
    while((topVC!.presentedViewController) != nil) {
        topVC = topVC!.presentedViewController
    }
    let customViewController = CustomViewController()
    let navController = UINavigationController(rootViewController: CustomViewController)
    topVC?.present(navController, animated: true, completion: nil)
2
N. Der