Tag Archives: 嵌套

[转]iOS中hidesBottomBarWhenPushed的正确用法(tabbar嵌套nav)

参考:http://www.isaced.com/post-223.html

主要是在TabBar嵌套Nav时,进行Push的时候隐藏TabBar的问题。

说说hidesBottomBarWhenPushed,从这个属性名也能知道它的意思了,官方的解释是这样:
If YES, then when this view controller is pushed into a controller hierarchy with a bottom bar (like a tab bar),[......]

继续阅读

php多目录嵌套include的解决方法

在网上看到别人这么做:

localhost\主目录\include\xxx.php中define一个主目录的绝对路径
//****目录的绝对路径****/
if ( !defined(‘ROOT_PATH’) ) {
define(“ROOT_PATH”, substr(dirname(__FILE__), 0, -7) );
}
其中这个-7就是include的长度,也就是到ROOT的所有子目录字节数,虽然可能每个文件都要加,但是可以[......]

继续阅读