


override func viewDidLoad() {
super.viewDidLoad()
DispatchQueue.main.async {
// 다른 뷰 컨트롤러로 이동.
let ViewController_first = self.storyboard?.instantiateViewController(withIdentifier: "ViewController_first") as! ViewController_first
ViewController_first.modalPresentationStyle = .fullScreen
self.present(ViewController_first, animated: true ,completion: nil)
}
// 그림자 세팅
setCircleViewShadow()
}