「Sunset」という名前のセルを持つ UITableView があります。UITableViewCell を押すと、ビューが「infoView」に切り替わり、.txt ファイルからテキストがロードされます。「戻る」ボタンを押すと、ビューは UITableView に戻りますが、問題があります。ビューを読み込んだ後、UITabBar はなくなりました! なくなってしまったので、別のビューに戻ることはできません。
私が試してみました:
self.hidesBottomBarWhenPushed = NO;
コード:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
UITableViewCell *cellSelected = [tableView cellForRowAtIndexPath:indexPath];
NSString *cellTitle = cellSelected.textLabel.text;
if (cellTitle == @"Sunrise")
{ //Swap views
informationView *iv = [[informationView alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:iv animated:YES];
}
}