본문 바로가기
반응형

분류 전체보기232

[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.
[프로그래머스 - 구현] 캐시 (for kakao) 📄 [구현] 캐시 C++ Source Code #include #include #include #include #include using namespace std; #define INT_PAIR pair #define STR_INT_PAIR pair const bool compare (const STR_INT_PAIR & left, const STR_INT_PAIR & right) { return left.second > right.second; } /* 페이지 교체 알고리즘은 페이징 기법으로 메모리를 관리하는 운영체제에서, 페이지 부재가 발생 하여 새로운 페이지를 할당하기 위해 현재 할당된 페이지 중 어느 것과 교체할지를 결정하는 방법이다. 이 알고리즘이 사용되는 시기는 페이지 부재가 발생해 새로운 페.. 2019. 8. 1.
[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.
반응형