Posts

Post not yet marked as solved
1 Replies
420 Views
Hey Guys,A big question I ask myself is how does these App work, where you earn mony by downloading Apps. How do they check if you download and opened it.yours sincerely Tell aka. YlikeThis
Posted
by YlikeThis.
Last updated
.
Post not yet marked as solved
1 Replies
1.2k Views
Hey,I am trying to build a custom navigation bar. When I set the navigationItem to leftbarbutton/rightbarbutton everything is working fine but the hamburger button is still in the middle. How can I solve this problem ?I used this Tutorial: https://www.youtube.com/watch?v=dB-vB9uDRCI&t=381sThank you for helpingimport UIKitclass HomeController: UIViewController{ override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .white configureNavigationBar() } @objc func handleMenuToggle() { print("toggle hat funktioniert") } func configureNavigationBar() { navigationController?.navigationBar.barTintColor = .darkGray navigationController?.navigationBar.barStyle = .black navigationItem.title = "Side Button" navigationItem.leftBarButtonItem = UIBarButtonItem(image: imageLiteral(resourceName: "hamburgerIcon2").withRenderingMode(.alwaysOriginal), style: .plain, target: self, action: #selector(handleMenuToggle)) }}
Posted
by YlikeThis.
Last updated
.