我意外地删除了我的顶点窗户,而不要再去做。
我的窗户是塔巴勒。
我正在使用xCode 3.1.3。 见下文与IB的屏幕相链接,并附有感化器。
http://www.rodiun.com/innflohmation/x23/IB-appDelegate.jpg。
非常感激。
我的代谢法则认为:
#import <UIKit/UIKit.h>
@interface LGS2010AppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
UIWindow *window;
UITabBarController *tabBarController;
}
@property (nonatomic, retain) UIWindow *window;
@property (nonatomic, retain) UITabBarController *tabBarController;
执行:
@implementation LGS2010AppDelegate
@synthesize window, tabBarController;
#pragma mark -
#pragma mark setup methods
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Add the tab bar controller s current view as a subview of the window
[window addSubview:tabBarController.view];
}
iFloh