首页 > 其他 > 详细

tabBar隐藏方式

时间:2015-08-14 15:39:05      阅读:220      评论:0      收藏:0      [点我收藏+]

如果是从A push到B,并且把A的一个东西传到B,那么在push时就要隐藏tabBar,并且要在B ViewController设置一个接收A传到的属性。

这种方式一般用在表格点选,要把表格点选的内容传到B去。

A中的代码大概就是这样:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    

    Friends *f = self.allFriends[indexPath.row];

    

    chatViewController *chatVC = [[chatViewController alloc] initWithNibName:@"chatViewController" bundle:nil];

    

    chatVC.chatWithFriend = f;

    

    // Push the view controller.

    chatVC.hidesBottomBarWhenPushed = YES;

    [self.navigationController pushViewController:chatVC animated:YES];

}

 

而B中用一个属性接收到A传来的值进行处理即可。

tabBar隐藏方式

原文:http://www.cnblogs.com/endtel/p/4729935.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!