码迷,mamicode.com
首页 >  
搜索关键字:ios导航    ( 93个结果
IOS导航栏的使用方法
UINavigationBar *navBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];       //创建一个导航栏集合       UINavigationItem *navItem = [[UINavigationItem alloc] initWithTitle:nil];       ...
分类:移动开发   时间:2015-01-29 12:48:19    阅读次数:150
iOS:如何修改导航栏按钮或者字体的颜色
iOS:如何修改导航栏按钮或者字体的颜色...
分类:移动开发   时间:2015-01-28 09:47:42    阅读次数:132
iOS 导航栏rgb值与设置的有差异
转: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
iOS导航条底部 与self.view 的分界线怎么隐藏
设置背景图片 self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; 加上下面代码可以取消导航下边的线,此方法也可以使用于tabbar self.navigationController.navigationBar...
分类:移动开发   时间:2015-01-06 15:40:38    阅读次数:117
ios 导航页面
// AppDelegate.m#import "AppDelegate.h"#import "ViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplic...
分类:移动开发   时间:2015-01-05 20:26:54    阅读次数:198
iOS 导航栏
//创建一个导航栏 UINavigationBar *navigationBar=[[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]; //创建一个导航栏集合 UINavigationItem ...
分类:移动开发   时间:2014-12-24 13:16:45    阅读次数:191
IOS-导航视图控制器的使用
摘要     本章主要在上一章的基础上修改,把其改为导航控制器的例子,其他的改变不大 运行结果 过程概要 新建基于基本视图的程序,然后改为基于导航控制器的工程,方法是:打开Main.storyboary,选中ViewCtroller,然后在XCode中Eeditor->Ebed in->Nav..即可实现转换为二级页面新建一个类,本例子全部使用一个二级页面对象,使用Titl...
分类:移动开发   时间:2014-12-07 17:55:47    阅读次数:201
iOS导航控制器常用函数与navigationBar常用属性
导航控制器常用函数触发时机当视图控制器的View将要出现时触发- (void)viewWillAppear:(BOOL)animated当视图控制器的View已经出现时触发- (void)viewDidAppear:(BOOL)animated当视图控制器的View将要消失时触发- (void)vi...
分类:移动开发   时间:2014-12-03 20:59:47    阅读次数:169
iOS开发学习之#简单通讯录的制作#
(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
ios 导航栏(自定义和使用系统方式)
系统方式: //1.设置导航栏背景图片 [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; self.navigationController.navigationBar.shadowIm...
分类:移动开发   时间:2014-11-17 17:51:26    阅读次数:191
93条   上一页 1 ... 6 7 8 9 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!