[iOS] 기기별 스크린 사이즈를 볼 수 있는 사이트
·
iOS
기기별 스크린 사이즈를 볼 수 있는 사이트 Adaptivity and Layout - Visual Design - iOS - Human Interface Guidelines - Apple Developer Adaptivity and Layout People generally want to be able to use their favorite apps on all of their devices and in any context. In an iOS app, you can configure interface elements and layouts to automatically change shape and size on different devices, durin developer.apple.com Screen..
[iOS] 일정시간 주기로 작업(함수) 실행하기 (scheduledTimer)
·
iOS
일정시간 주기로 작업(함수) 실행하기 (scheduledTimer) // timeInterval: 반복 주기(단위: 초) // repeats: 반복 여부 Timer.scheduledTimer(timeInterval: 10.0, target: self, selector: #selector(yourFunc), userInfo: nil, repeats: true) . . . @objc func yourFunc() { // your code } 위와 같이 함수를 작성하고 Timer의 scscheduledTimer를 원하는 위치에서 사용하면 됩니다.