본문 바로가기
반응형

# 애플 [Apple]56

[iOS] 애플 암호화 개발 도구 (Apple CryptoKit Swift Framework) Cryptography and Your Apps System frameworks encrypt both data at rest and data in transit in a transparent way for you. This functionality is available by simply setting an attribute. However you may want to do more to protect your users' data. CryptoKit is a new Swift framework that makes it easier and safer than ever to perform cryptographic operations, whether you simply need to compute a ha.. 2019. 10. 21.
[iOS] iOS/macOS 개발자 면접 예상 질문 (Interview Question) ㅍ카테고리 게시글 작성 날짜 게시글 최근 수정 날짜 작성자 iOS 2019-08-03 22:00 2022.05.23. 20:50 Dev.Yang 👓 Cocoa Framework란 무엇인지 설명하시오. 🍎 Cocoa (Application) Layer - The Cocoa (Application) layer implements many features that are distinctive aspects of the OS X user experience. Users expect to find these features throughout the system, so it’s a good idea to support all the features that make sense in your app. 🍎 Media.. 2019. 8. 3.
[iOS] UIStatusBar에 Network Indicator 표시하기 (How to turn on the network indicator in the iOS status bar?) 📄 Network Activity Indicator Source Code by Swift // MARK: - Show NetworkActivityIndicator UIApplication.shared.isNetworkActivityIndicatorVisible = true // MARK: - Hide NetworkActivityIndicator UIApplication.shared.isNetworkActivityIndicatorVisible = false 🚀 REFERENCE Status Bars - Bars - iOS - Human Interface Guidelines - Apple Developer Status Bars The status bar appears along the upper edge o.. 2019. 8. 2.
[iOS] UserDefaults How to save user settings using UserDefaults – Swift 5 An interface to the user’s defaults database, where you store key-value pairs persistently across launches of your app. integer (forKey:) bool (forKey:) float (forKey:) double (forKey:) object (forKey:) 📄 UserDefaultes Swift Source Code let defaults = UserDefaults.standard // SAVE defaults.set(25, forKey: "Age") defaults.set(true, forKey: "U.. 2019. 8. 1.
반응형