私のコードでは、次のようにタブ バー コントローラーを呼び出します。
[[TTNavigator navigator] openURLAction:[TTURLAction actionWithURLPath:@"tt://tabBar"]];
タブバーが次のように呼び出した最初のページの場合:
- (id)init{
if (self = [super init]) {
self.title = @"app";
UIImage* image = [UIImage imageNamed:@"tab.png"];
self.tabBarItem = [[[UITabBarItem alloc] initWithTitle:self.title image:image tag:0] autorelease];
self.variableHeightRows = YES;
id<TTTableViewDataSource> ds = [MainPageDataSource dataSourceWithItems:nil];
ds.model = CreateTabModelWithCurrentSettings();
self.dataSource = ds;
}
return self;}
-(void)loadView{
self.view = [[[UIView alloc] initWithFrame:TTApplicationFrame()] autorelease];
self.tableView = [[[UITableView alloc] initWithFrame:TTApplicationFrame() style:UITableViewStylePlain] autorelease];
self.tableView.rowHeight = 80.f;
self.tableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.view addSubview:self.tableView];}

上記のとおりです。
「戻る」タイトルを削除するには?
両方のタイトルを削除するには?
実際、バックナビゲートバーは以前のログインページのものであることがわかりました。タブバーコントローラーが呼び出された後に以前のログインページを解放する方法はありますか?