NCAppDelegate.h
#import <UIKit/UIKit.h>
@interface NCAppDelegate : UIResponder <UIApplicationDelegate> {
UIWindow *window;
UITabBarController *tabBarController;
}
@property (nonatomic, retain) UIWindow *window;
@property (nonatomic, retain) UITabBarController *tabBarController;
@end
NCAppDelegate.m
@synthesize window;
@synthesize tabBarController;
- (void)dealloc
{
[window release];
[tabBarController release];
[super dealloc];
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
tabBarController = [[UITabBarController alloc] init];
HomeViewController *vc1 = [[HomeViewController alloc] init];
MetionsViewController *vc2 = [[MetionsViewController alloc] init];
FavoritesViewController *vc3 = [[FavoritesViewController alloc] init];
ProfileViewController *vc4 = [[ProfileViewController alloc] init];
NSArray* controllers = [NSArray arrayWithObjects:vc1, vc2,vc3,vc4, nil];
tabBarController.viewControllers = controllers;
[window addSubview:tabBarController.view];
[self.window makeKeyAndVisible];
return YES;
}
HomeViewController.m
@implementation HomeViewController
- (id)init {
if (self = [super init]) {
self.title = @"主页";
UIImage* anImage = [UIImage imageNamed:@"home_default.png"];
UITabBarItem* theItem = [[UITabBarItem alloc] initWithTitle:@"主页" image:anImage tag:0];
self.tabBarItem = theItem;
[theItem release];
}
return self;
}
分享到:
相关推荐
该项目是一款基于freeRTOS操作系统和STM32F103x微控制器的手机远程控制浴室温度系统设计源码,共包含1087个文件,包括580个C语言源文件、269个头文件、45个汇编源文件、36个数据文件、36个目标文件、35个编译规则文件、28个包含文件、27个文本文件、6个源文件、3个归档文件。此系统通过手机远程实现对浴室温度的有效控制,适用于智能浴室环境管理。
labview程序代码参考学习使用,希望对你有所帮助。
labview程序代码参考学习使用,希望对你有所帮助。
labview程序代码参考学习使用,希望对你有所帮助。
labview程序代码参考学习使用,希望对你有所帮助。