xCode ViewController 求助!

//AppDelegate.h#import<UIKit/UIKit.h>//import"ViewController.h"@classViewController;@... // AppDelegate.h

#import <UIKit/UIKit.h>
//import "ViewController.h"
@classViewController;

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) IBOutletViewController *CoreDataviewController;
@property (strong, nonatomic) UIWindow *window;

@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;

- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;

@end

// AppDelegate.m#import "AppDelegate.h"
#import "ViewController.h"

@implementation AppDelegate

@synthesize managedObjectContext = _managedObjectContext;
@synthesize managedObjectModel = _managedObjectModel;
@synthesize persistentStoreCoordinator = _persistentStoreCoordinator;
@synthesize CoreDataviewController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindowalloc] initWithFrame:[[UIScreenmainScreen] bounds]];
// Override point for customization after application launch.
CoreDataviewController = [[ViewControlleralloc]initWithNibName: @"ViewController"bundle: nil];
self.window.backgroundColor = [UIColorwhiteColor];
// add the root view controller
[self.windowaddSubview:CoreDataviewController.view];
[self.windowmakeKeyAndVisible];
returnYES;
}

请问 1. appDelegate.h 中为什么用 @class ViewController 代替 #import ViewController.h呀?
2. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{} 这一段是什么作用呀?

多谢~
展开
 我来答
斤斤宝贝0dE
2012-10-31 · TA获得超过2168个赞
知道小有建树答主
回答量:712
采纳率:0%
帮助的人:968万
展开全部
1.在.h文件中, 一般只需要知道被引用的类的名称, 不需要知道其内部的实体变量和方法,所以仅仅用@class来预声明ViewController是类的名称,这样做相较于#import编译速度快很多。 如果你需要用到ViewController的成员变量和方法,就需要#import。
2.从字面上可知,在程序加载完成的时候,会回调这个方法。也就是系统那堆事情干完了,控制权交到我们手里了,所以一般我们的代码都是从这开始的。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式