2020-12-30から1日間の記事一覧

swift NavigatinController と TabbarControllerの関係

NavigationConrollerはTabbarの下の階層にある。 ポイント: NavigatonControllerは各ViewControllerを保持している Tabbar |——NavicationController———VC1 |——NavicationController———VC2 |——NavicationController———VC3 StoryBoardを見ると理解しやすい Nav…

swift ボタンの角丸、背景色 忘備録

layer プロパティを利用する //IBActionでなくIBOutletで接続しておくこと @IBOutlet weak var button: UIButton! button.backgroundColor = .clear button.layer.cornerRadius = 5 button.layer.borderWidth = 1 button.layer.borderColor = UIColor.black.…