UIBarButtonItem *tbarItem =
[[UIBarButtonItemalloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemActiontarget:selfaction:@selector(book)];
UIBar.....
分类:
其他好文 时间:
2014-06-04 21:34:39
阅读次数:
239
//设置导航栏的文字self.navigationItem.title=@"功效";//设置导航栏的颜色self.navigationController.navigationBar.barTintColor=
[UIColororangeColor];//设置导航栏上字体颜色 [self.na.....
分类:
其他好文 时间:
2014-05-16 08:11:48
阅读次数:
247
初学ios,对toolbar初步了解:self.navigationItem.title=@"显示工具栏";
// 显示工具栏 //self.navigationController.toolbarHidden = NO;
[self.navigationController se...
分类:
移动开发 时间:
2014-05-13 19:51:16
阅读次数:
350
1、怎样写一个不泄漏的NavigationController页面跳转程序?非arc模式下,假设有A、B两个viewController,从A推到B,怎样写内存才能不泄漏?A.m-(IBAction)btnGoToViewControllerB:(id)sender{
ViewControll...
分类:
移动开发 时间:
2014-04-29 16:26:47
阅读次数:
503
我们一般切换UIViewController的时候用的是如下代码
#import "UIViewControllerDemo.h"
UIViewControllerDemo *vc = [UIViewControllerDemo alloc] initWithNibName:nil bundle:nil] autorelease];
[self.navigationController pushViewController:vc animated:YES];...
分类:
其他好文 时间:
2014-04-27 21:21:00
阅读次数:
294