목록icon (2)
투케이2K
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT [방법 설명] [소스 코드] func changeAppIcon(iconName:String) { /* MARK: [참고 사항] 1. info.plist 에 동적으로 변경하려는 아이콘을 등록해야합니다 2. 동적으로 변경하려는 아이콘을 프로젝트에 추가해야합니다 3. 동적 아이콘 변경은 ios 10.3 버전 이상부터 사용할 수 있습니다 4. 호출 방법 : [실제 디바이스 기기에서 확인 필요] - self.changeAppIcon(iconName: "") // 기본 Assets 에서 설정한 아이콘 지정 실시 - self.changeAppIcon(iconName: "Icon1") // info.plist 에서 지정한 동적 파일 ..
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT [참고 사이트 주소] https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/app-icon/ App Icon - Icons and Images - iOS - Human Interface Guidelines - Apple Developer App Icon Every app needs a beautiful and memorable icon that attracts attention in the App Store and stands out on the Home screen. Your icon is the first opportunity to ..