gpt4 book ai didi

objective-c - Xcode 帮助? - "' didRotateFromInterfaceOrientation' 未声明 "+ "在 ';' token 之前应为 ':'“

转载 作者:行者123 更新时间:2023-11-29 11:24:01 27 4
gpt4 key购买 nike

我正在尝试在 Xcode 中创建一个应用程序,当手机从一个方向旋转到另一个方向时,它会切换到一个新 View 。

这里是“switchviewcontroller.h”文件代码:

#import <UIKit/UIKit.h>

@interface SwitchViewController : UIViewController {

}

-(IBAction)switchview:(id)sender;

@end

这里是“switchviewcontroller.m”文件代码:


#import "SwitchViewController.h"
#import "secondview.h"

@implementation SwitchViewController

-(IBAction)switchview:(id)sender

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return YES;
}

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
if((fromInterfaceOrientation == UIInterfaceOrientationLandscapeLeft) ||
(fromInterfaceOrientation == UIInterfaceOrientationLandscapeRight))
{
[[secondview alloc] initWithNibName:@"secondview" bundle:[NSBundle mainBundle]];
}

}

我得到问题中显示的 2 个错误,所以它不起作用。

最佳答案

您缺少 -(IBAction)switchview:(id)sender 的实现 block
- 使其成为 -(IBAction)switchview:(id)sender {} 并重试。

关于objective-c - Xcode 帮助? - "' didRotateFromInterfaceOrientation' 未声明 "+ "在 ';' token 之前应为 ':'“,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4762278/

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