博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tabBar隐藏方式
阅读量:5102 次
发布时间:2019-06-13

本文共 605 字,大约阅读时间需要 2 分钟。

如果是从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传来的值进行处理即可。

转载于:https://www.cnblogs.com/endtel/p/4729935.html

你可能感兴趣的文章
支持向量机随笔
查看>>
List删除行问题
查看>>
Linux 基础知识
查看>>
开辟新空间输入成绩
查看>>
Android屏幕适配
查看>>
c#使用XSLT将xml文档转换为html文档
查看>>
管道符、重定向、环境变量
查看>>
python日期,时间函数
查看>>
Timus 1146. Maximum Sum
查看>>
shell脚本学习总结02--数组
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
整体二分——[Poi2011]Meteors
查看>>
数据库3
查看>>
delphi之事件
查看>>
windows server 2008 r2 安装
查看>>
Enigma –> Sadness
查看>>
存储分类
查看>>
下一代操作系统与软件
查看>>
【iOS越狱开发】如何将应用打包成.ipa文件
查看>>