LoginSignup
10
10

More than 5 years have passed since last update.

[objc][memo] UINavigationBar のタイトルに画像を表示する。

Posted at

UINavigationBar のタイトルに画像を表示する。

ViewDidLoadとかの中に、


UIImage *titleImage = [UIImage imageNamed:@"HeaderLogo.png"];
UIImageView *titleImageView = [[UIImageView alloc] initWithImage:titleImage];
titleImageView.frame = CGRectMake(0, 0, titleImage.size.width * 0.5, titleImage.size.height * 0.5);//適当にサイズ調整

UIView *titleView = [[UIView alloc]initWithFrame:CGRectMake(-titleImage.size.width*0.5, 0, titleImageView.frame.size.width , titleImageView.frame.size.height)];
[titleView addSubview:titleImageView];
self.navigationItem.titleView = titleView;

10
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
10