您好我刚开始使用swift并使用iPad应用程序并创建iphone版本。 我试图在Swift中向地图添加注释,并且需要将这样的信息添加到AppDelegate.h和.m以使其工作,但在Swift中没有AppDelegate.h或.m。我如何让它工作?
以下是AppDelegates的内容
.h
#import <UIKit/UIKit.h>
@class AnnotationViewController;
@interface AnnotationAppDelegate : NSObject <UIApplicationDelegate> {
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet AnnotationViewController *viewController;
@end
.m
#import "AnnotationAppDelegate.h"
#import "AnnotationViewController.h"
@implementation AnnotationAppDelegate
@synthesize window=_window;
@synthesize viewController=_viewController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}
请帮助..在紧迫的截止日期前谢谢。