首先创建一个windows base 工程,工程名为 HelloWorld 然后在 HelloWorldAppDelegate.m 内找到 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 方法 然后把此方法的内容替换为如下 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { UILabel *helloLabel = [[UILabel alloc] initWithFrame:CGRectMake(150, 250, 60, 60)]; helloLabel.font = [UIFont systemFontOfSize:17]; // label显示内容字体大小 helloLabel.textAlignment = UITextAlignmentCenter; // label 显示内容格式 helloLabel.numberOfLines = 0; // 最多可显示行数,当0时,可尽可能显示多行 helloLabel.lineBreakMode = UILineBreakModeWordWrap; helloLabel.text = @"Hello World!"; // label 显示的内容 [self.window addSubview:helloLabel]; // 将label添加到window,即显示区域 [helloLabel release]; // 因为是alloc 申请的,而且不是autorelease所以要释放 [self.window makeKeyAndVisible]; return YES; } 然后再运行即可