SWIFT 썸네일형 리스트형 AppSetting 앱 설정화면으로 이동 처리앱에서 알림 설정을 유도할 때 앱의 설정 화면으로 이동 처리가 필요하다. guard let settingURL = URL(string: UIApplication.openSettingsURLString) else { return } UIApplication.shared.open(settingURL)UIApplication에서 openSettingURLSetting으로 URL 값을 만들어 open하면 요청 앱에서 앱 세팅 으로 이동할 수 있다. 더보기 Final The final keyword is used to indicate that a class, method, or property cannot be overridden or subclassed Declaring a class as final, it means that it’s the end of the inheritance chain for that class, and it cannot be subclassed further. final class LastClass { // Class definition } // error! PleaseNot class cannot inherit from a 'final' class 'LastClass' class PleaseNot: LastClass { } Benefic.. 더보기 이전 1 다음