-
(iOS) 스토리 보드 없이 다른 viewContoller로 전환 하는 방법Programing Language/iOS(Swift) 2019. 11. 4. 00:46728x90반응형
UIButton에
addTart()안에 target에 밑에 코드가 포함된 함수 넣기
//present 방식 let svc = SecondViewController() //modalTransitionStyle은 원하는 거 선택 <- 검색해서 찾아보세요~ //modalPresentationStyle의 다양한 방식이 있으니 검색 ㄱㄱ svc.modalPresentationStyle = .fullScreen self.present(svc, animated: true, completion: nil)
728x90반응형'Programing Language > iOS(Swift)' 카테고리의 다른 글
(iOS) CGRect, CGSize 그리고 CGPoint 의 차이점 [펌] (0) 2019.11.06 (iOS) Xcode11 스토리 보드 없애는 방법 (0) 2019.11.04 (iOS) CollectionView와 http통신으로 데이터 넣을때 발생하는 문제 해결 (0) 2019.11.03 iOS) UIView에 터치 이벤트를 추가하는 방법? (0) 2019.11.01 (iOS) UILabel 코드로 생성 및 기본 설정 (0) 2019.11.01