Using your own navigation bar

Usage

let communityHomePage = AmityCommunityHomePageViewController.make()
communityHomePage.navigationBarType = .custom

// create custom view
let label = UILabel()
label.text = "This is a navigation custom view"
label.backgroundColor = .orange

// assign custom view to title view
homepage.navigationItem.titleView = label

Last updated