2020-04-01から1ヶ月間の記事一覧

Dateから年、月、日の部分だけ取得

let calendar = Calendar(identifier: .gregorian) //西暦 let currentDate = Date() let currentYear = calendar.component(.year, from: currentDate) let currentMonth = calendar.component(.month, from: currentDate) let currentDay = calendar.compo…

xibで再利用可能のViewを作る

1、Command+Nで新規ファイルウィンドウを開く、中にUser Interface下のViewを新規する。新規したのはxibファイル。xibファイルの編集方法はStoryboardと大体同じ。 2、UIViewを継承して自分のViewクラスを作成、xibファイルを自分のサブビューとして追加す…

FullScreenで次のViewを表示

Extension定義 extension UIViewController { func presentWithFullScreen<T: UIViewController>(storyboardId: String, handler: ((T) -> Void)?){ let vc = self.storyboard?.instantiateViewController(identifier: storyboardId) as! T if let wrappedHandler = handler { wra</t:>…