UINavigationBar *navBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
//创建一个导航栏集合
UINavigationItem *navItem = [[UINavigationItem alloc] initWithTitle:nil];
...
分类:
移动开发 时间:
2015-01-29 12:48:19
阅读次数:
150
转:http://b2cloud.com.au/how-to-guides/bar-color-calculator-for-ios7-and-ios8/计算:http://htmlpreview.github.io/?https://github.com/tparry/Miscellaneous/...
分类:
移动开发 时间:
2015-01-25 16:34:44
阅读次数:
157
设置背景图片
self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
加上下面代码可以取消导航下边的线,此方法也可以使用于tabbar
self.navigationController.navigationBar...
分类:
移动开发 时间:
2015-01-06 15:40:38
阅读次数:
117
// AppDelegate.m#import "AppDelegate.h"#import "ViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplic...
分类:
移动开发 时间:
2015-01-05 20:26:54
阅读次数:
198
//创建一个导航栏 UINavigationBar *navigationBar=[[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]; //创建一个导航栏集合 UINavigationItem ...
分类:
移动开发 时间:
2014-12-24 13:16:45
阅读次数:
191
摘要
本章主要在上一章的基础上修改,把其改为导航控制器的例子,其他的改变不大
运行结果
过程概要
新建基于基本视图的程序,然后改为基于导航控制器的工程,方法是:打开Main.storyboary,选中ViewCtroller,然后在XCode中Eeditor->Ebed in->Nav..即可实现转换为二级页面新建一个类,本例子全部使用一个二级页面对象,使用Titl...
分类:
移动开发 时间:
2014-12-07 17:55:47
阅读次数:
201
导航控制器常用函数触发时机当视图控制器的View将要出现时触发- (void)viewWillAppear:(BOOL)animated当视图控制器的View已经出现时触发- (void)viewDidAppear:(BOOL)animated当视图控制器的View将要消失时触发- (void)vi...
分类:
移动开发 时间:
2014-12-03 20:59:47
阅读次数:
169
(1)创建一个项目telephoneBook
(2)打开Main.storyboard文件,从视图库图拖一个Tab bar Controller标签栏控制器到画布中。
(3)在工具栏中,选择show the Attributes inspector图标,在View controller下,选择Is Initial View Controller。
(4)将画布中的原有的view cont...
分类:
移动开发 时间:
2014-12-03 12:32:10
阅读次数:
213
系统方式:
//1.设置导航栏背景图片
[self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowIm...
分类:
移动开发 时间:
2014-11-17 17:51:26
阅读次数:
191