push的时候隐藏底部的tabbar#import"mainNavigationControllers.h"@interface mainNavigationControllers ()@end@implementation mainNavigationControllers- (void)view...
分类:
其他好文 时间:
2015-04-22 11:25:02
阅读次数:
137
HomePageViewController *first = [[HomePageViewController
alloc] init];
first.tabBarItem = [[UITabBarItem
alloc] initWithTitle:@"首页"
image:aImage selectedImage:nil];
UINavigationController...
分类:
移动开发 时间:
2015-04-21 14:39:41
阅读次数:
136
iOS开发之隐藏tabbar--解决隐藏后依然不能响应对应位置事件的问题...
分类:
移动开发 时间:
2015-04-21 13:09:13
阅读次数:
569
.trover { background: #f9f9f9; }.trclick { background: #c4e8f5; }.treven{ background:#CCF...
分类:
Web程序 时间:
2015-04-20 11:02:00
阅读次数:
269
1 //UITabBarControllerDelegate方法 2 - (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)vie....
分类:
其他好文 时间:
2015-04-14 14:14:31
阅读次数:
101
实现效果:原来效果: 实现对应的思路有:1.首先你要拥有这样的一个控件CSTabBar,继承自tabbar,这样才能做到重构(废话)2.你要在使用CSTabBar使用kvc来实现 [self setValue:newTab forKey:@"tabBar"]; newTab是自己设定的对应的tab....
分类:
其他好文 时间:
2015-04-12 17:26:10
阅读次数:
127
第一步://在info.plist中添加一个字段:view controller -base status bar 设置为NO;//导航颜色[[UINavigationBar appearance] setBarTintColor:[UIColor XXXX]];[[UITableViewCell ...
分类:
移动开发 时间:
2015-04-07 11:16:52
阅读次数:
130
iPhone或iTouch的宽为320像素,高为480像素,状态栏高为20像素toobar高为44像素tabbar高为49像素导航栏高为44像素iphone分辨率参数型号屏幕尺寸分辨率iPhone3.5英寸480x320像素iPhone 3G3.5英寸480x320像素iPhone 3GS3.5英寸...
分类:
移动开发 时间:
2015-04-06 15:41:57
阅读次数:
168
1.TabBar的层次结构
2.自定义TabBar的背景
可以将一个很短的图片拉长作为背景图片,方法:
self.backgroundColor = [UIColor
colorWithPatternImage:[UIImage
imageWithName:@"tabbar_background"]];
- (id)initWithFrame:(CGRect)f...
分类:
其他好文 时间:
2015-04-06 01:07:21
阅读次数:
177
1.有一个tabBarController的视图,设置tabBar下面item的标题和NavigationItem上的标题可以为:homeVC.navigationItem.title = @"首页";homeVC.tabBarItem.title = @"首页";上面2行可以是用: homeVC....
分类:
其他好文 时间:
2015-04-04 11:54:50
阅读次数:
89