码迷,mamicode.com
首页 > 其他好文 > 详细

tabBar隐藏方式

时间:2015-08-14 15:40:42      阅读:113      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!