iOSで複数行のナビゲーション/トップバーを作成する方法について誰かが手がかりを持っていますか?WhatsAppのステータス行(最後に表示されたものまたは現在のステータス情報を表示するもの)に似たものが必要です。何かアドバイスをいただければ幸いです。
画像のようなものを実現したい(Francis Whitman /最後に見た[...]):
iOSで複数行のナビゲーション/トップバーを作成する方法について誰かが手がかりを持っていますか?WhatsAppのステータス行(最後に表示されたものまたは現在のステータス情報を表示するもの)に似たものが必要です。何かアドバイスをいただければ幸いです。
画像のようなものを実現したい(Francis Whitman /最後に見た[...]):
デフォルトでは、ナビゲーション バーのタイトルに現在表示されているビュー コントローラのプロパティUINavigationController
が使用されます。ただし、 View Controller のプロパティのプロパティを次のようtitle
に設定することで、任意のビューを表示させることができます。titleView
navigationItem
// In your view controller’s implementation (.m) file:
- (id)initWithNibName:(NSString *)nibName
bundle:(NSStirng *)nibBundle
{
self = [super initWithNibName:nibName bundle:nibBundle];
if (self) {
UIView *myTitleView = [[UIView alloc] initWithFrame:CGRectMake(0.0f,
0.0f,
250.0f,
44.0f)];
[myView setBackgroundColor:[UIColor greenColor]];
[[self navigationItem] setTitleView:myTitleView];
}
return self;
}
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width/2, 200)];
[label setBackgroundColor:[UIColor clearColor]];
[label setTextColor:[UIColor whiteColor]];
[label setTextAlignment:NSTextAlignmentCenter];
[label setNumberOfLines:0];
[label setText:_certificate.name];
self.navigationItem.titleView = label;