1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

tabBarの角を丸くする

Posted at

今回の内容

C9383B90-92F9-435F-9935-A85630711564_4_5005_c.jpeg

コードと簡単解説

  • tabBar.layer.cornerRadius = 25.0で角の丸みを設定

  • tabBar.layer.masksToBounds = trueで角丸に出来る様にします

  • tabBar.layer.maskedCorners = [.layerMaxXMinYCorner,.layerMinXMinYCorner]で左上と右上の角を指定して、.layer.cornerRadiusを適用します。

import UIKit

class TabBarViewController: UITabBarController {

    override func viewDidLoad() {
        super.viewDidLoad()

        tabBar.barTintColor = .systemGray
        tabBar.tintColor = .white
        tabBar.unselectedItemTintColor = .systemIndigo
        
        tabBar.layer.cornerRadius = 25.0
        tabBar.layer.masksToBounds = true
        tabBar.layer.maskedCorners = [.layerMaxXMinYCorner,.layerMinXMinYCorner]    
    }
  
}

終わり

ご指摘、ご質問などありましたら、コメントまでお願い致します。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?