gpt4 book ai didi

ios - 在 SKScene 上呈现一个 viewController

转载 作者:可可西里 更新时间:2023-11-01 04:05:02 27 4
gpt4 key购买 nike

我试图在 SkView 上显示 UIActivityViewController 但 xcode 给我这个错误:

No visible @interface for 'GameOver' declares the selector 'presentViewController:animated:completion:'

- (void)shareScore {

//add view
UIView *Sview = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 512, 512)];
UIImageView *image = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"shareScoreImg.png"]];
image.frame = Sview.frame;
[Sview addSubview:image];

//add label
CGRect fframe = self.view.frame;

UILabel *score = [[UILabel alloc] initWithFrame:fframe];
score.text = @"9999";
score.textAlignment = NSTextAlignmentCenter;
score.textColor = [UIColor darkGrayColor];
score.center = CGPointMake(250, 440);
score.font = [UIFont fontWithName:@"Pixel LCD7" size:50];
[Sview addSubview:score];


//capture view
UIGraphicsBeginImageContextWithOptions(Sview.bounds.size, Sview.opaque, 0.0);
[Sview.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * screenshot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

UIActivityViewController* activityViewController =
[[UIActivityViewController alloc] initWithActivityItems:@[screenshot]
applicationActivities:nil];

[self presentViewController:activityViewController animated:YES completion:nil];

}

如何在 SKScene 上呈现预设的 viewController?谢谢。

最佳答案

我们可以通过使用此代码访问 Root View Controller 来使用“presentModalViewController”

 UIViewController *vc = self.view.window.rootViewController;
[vc presentViewController: activityViewController animated: YES completion:nil];

现在可以正常使用了!

关于ios - 在 SKScene 上呈现一个 viewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21089332/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com