0
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
UINavigationController *nav=[[UINavigationController alloc] initWithRootViewController:self.viewController];

// CHANGE COLOR TO BLACK

nav.navigationBar.tintColor = [UIColor blackColor];

// ADDING IMAGE TO NAVIGATION BAR
UIImage *image = [UIImage imageNamed:@"logo_36.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
[nav.navigationBar.topItem setTitleView:imageView];

self.window.rootViewController = nav;
[self.window makeKeyAndVisible];  

return YES;
}

プロジェクト全体でこのコードを使用したいので、このコードをappdelegateクラスで試しました。画像を表示するために機能しますが、中央に表示され、表示できなかったテキストも必要です。

iOSのナビゲーションバーの左側に画像とテキストの両方を表示する方法を誰か提案してください

4

1 に答える 1

-1

imageview をナビゲーション topItem titleview に設定する理由

交換

[nav.navigationBar.topItem setTitleView:imageView];

nav.navigationbar.topItem.leftBarButtonItem:imageviewを使用

`[nav.navigationBar.topItem setTitle:@"必要なテキスト"]; を設定します。

UIImage* image3 = [UIImage imageNamed:@"mail-48_24.png"];
CGRect frameimg = CGRectMake(0, 0, image3.size.width, image3.size.height);
UIButton *someButton = [[UIButton alloc] initWithFrame:frameimg];
[someButton setBackgroundImage:image3 forState:UIControlStateNormal];
[someButton addTarget:self action:@selector(sendmail)
     forControlEvents:UIControlEventTouchUpInside];
[someButton setShowsTouchWhenHighlighted:YES];

UIBarButtonItem *mailbutton =[[UIBarButtonItem alloc] initWithCustomView:someButton];
self.navigationItem.leftBarButtonItem=mailbutton;
[someButton release];
于 2013-08-30T11:01:15.160 に答える