我对IOS开发很陌生,在这里我遇到了一个我以前没有遇到过的问题。这是我所拥有的:
我创建了一个项目,添加了一些附加到他们自己的类的 ViewController。但是现在,我只是在情节提要中添加了一个新的 ViewController。然后我创建了一个新的 Objective-C 类(其中是 UIViewController 的子类)。问题是在 IB 中,我无法将 ViewController 链接到新创建的类,因为我根本没有 IB 提供的列表中的类(见下图)。我的新课程名为MapShownViewController
,但正如您在图像上看到的那样,它不可用。
它适用于我所有其他课程,但不适用于这个课程。
这是 MapShownViewController.h :
#import <UIKit/UIKit.h>
@interface MapShownViewController : UIViewController
@end
和 MapShownViewController.m :
#import "MapShownViewController.h"
@interface MapShownViewController ()
@end
@implementation MapShownViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
}
- (void)viewDidUnload
{
[super viewDidUnload];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
有人可以解释一下我做错了什么吗?