mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-16 08:04:57 +00:00
52 lines
1.0 KiB
Objective-C
Executable File
52 lines
1.0 KiB
Objective-C
Executable File
#import "NotebookTab.h"
|
|
|
|
@interface NotebookTab ()
|
|
|
|
@end
|
|
|
|
@implementation NotebookTab
|
|
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
|
|
// Do any additional setup after loading the view.
|
|
// 设置图片
|
|
if (!self.tabbarItemImagePath) { //如果没有设置过图片则设置
|
|
self.tabbarItemImagePath = @"tabbed_icon.bundle/notebook3";
|
|
[self setTabBarImage];
|
|
|
|
/*
|
|
NotebookControllerForTest *a = [[NotebookControllerForTest alloc] init];
|
|
[self initWithRootViewController:a];
|
|
*/
|
|
}
|
|
else {
|
|
return;
|
|
}
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning
|
|
{
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
/*
|
|
#pragma mark - Navigation
|
|
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
|
|
{
|
|
// Get the new view controller using [segue destinationViewController].
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
@end
|