8.7 C
Canberra
Saturday, July 26, 2025

ios – UITabBarController Head and Physique Format


Perhaps there is not a means. I am fairly certain there’s a option to customise the UITabBarController structure to work.

My query is about having a header and physique in UITabBarController. I’ve the next code within the TabBarLayout.

import UIKit

class TabBarLayout: UITabBarController {
  
  @IBOutlet var viewHeader: UIView!

  override func viewDidLoad() {
    tremendous.viewDidLoad()
    viewHeader.translatesAutoresizingMaskIntoConstraints = false
    view.addSubview(viewHeader)
    let leftSide = NSLayoutConstraint(merchandise: viewHeader!, attribute: .left, relatedBy: .equal, toItem: view, attribute: .left, multiplier: 1.0, fixed: 0.0)
    let rightSide = NSLayoutConstraint(merchandise: viewHeader!, attribute: .proper, relatedBy: .equal, toItem: view, attribute: .proper, multiplier: 1.0, fixed: 0.0)
    let topSide = NSLayoutConstraint(merchandise: viewHeader!, attribute: .high, relatedBy: .equal, toItem: view, attribute: .high, multiplier: 1.0, fixed: 0.0)
    let top = NSLayoutConstraint(merchandise: viewHeader!, attribute: .top, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1, fixed: 100)
    view.addConstraint(leftSide)
    view.addConstraint(rightSide)
    view.addConstraint(topSide)
    view.addConstraint(top)
  }
}

The Storyboard has UITabBarController with Storyboard References.

UITabBarController Layout

The Purchase Storyboard reveals the next screenshot:

Buy Storyboard

import UIKit

class BuyController: UIViewController {
  
  override func viewWillAppear(_ animated: Bool) {
    tremendous.viewWillAppear(animated)
    print("BUYCONTROLLER")
    let tbc = tabBarController as! TabBarLayout
    
    // How do I align this view's topAnchor to viewHeader's backside anchor?
  }
}

How ought to I align the Purchase Storyboard high anchor to viewHeader’s backside anchor in order that the Take a look at Label is seen?

iOS Simulator

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

[td_block_social_counter facebook="tagdiv" twitter="tagdivofficial" youtube="tagdiv" style="style8 td-social-boxed td-social-font-icons" tdc_css="eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjM4IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9" custom_title="Stay Connected" block_template_id="td_block_template_8" f_header_font_family="712" f_header_font_transform="uppercase" f_header_font_weight="500" f_header_font_size="17" border_color="#dd3333"]
- Advertisement -spot_img

Latest Articles