IOS 개발 (38) 썸네일형 리스트형 [iOS] 특수문자 (특수기호) 뜻 [출처 : https://wgtech.github.io/posts/2019/06/07/Special-Characters-In-Swift/ ] 특수문자 (기호) 한글표현 영어표현 정의 , 용도 ` 그레이브 Grave Accent / Back Tick 키워드를 식별자로 변환 ~ 물결 / 물결 표시 Tilde 비트 연산 ! 느낌표 Exclamation Mark 논리부정 / 저장된 값을 강제로 가져올때 (Optional) 용도로 사용 @ 골뱅이 At symbol 코드 자체의 특성을 가리킬 때 사용 # 우물정 / 샵 / 해시태크 Sharp / Pound / Hash Tag Swift 고유의 특별한 명령어들의 첫문자 $ 달러 Dollar SIgn Closure 에서 파라미터(인자/ Parameter) 이름을 대체할.. [iOS] class Bundle : NSObject 요약 Summary 디스크의 번들 디렉토리에 저장된 코드 및 자원의 표현. A representation of the code and resources stored in a bundle directory on disk. 선언 Declaration class Bundle : NSObject 토론 Discussion Apple은 번들을 사용하여 앱, 프레임 워크, 플러그인 및 기타 여러 특정 유형의 컨텐츠를 나타냅니다. 번들은 포함 된 자원을 잘 정의 된 서브 디렉토리로 구성하며 번들 구조는 플랫폼 및 번들 유형에 따라 다릅니다. 번들 객체를 사용하면 번들의 구조를 몰라도 번들의 리소스에 액세스 할 수 있습니다. 번들 오브젝트는 번들 구조, 사용자 환경 설정, 사용 가능한 현지화 및 기타 관련 요소를 고려하.. [iOS] viewDidLoad() Instance Method viewDidLoad() 컨트롤러의 뷰가 메모리에 로드 된 후 호출됩니다. Called after the controller's view is loaded into memory. 선언 Declaration func viewDidLoad() 토론 Discussion 이 메소드는 뷰 컨트롤러가 뷰 계층을 메모리에 로드 한 후에 호출됩니다. 이 메소드는 뷰 계층 구조가 nib 파일에서 로드 되었는지 또는 loadView () 메소드에서 프로그래밍 방식으로 작성되었는지에 관계없이 호출됩니다. nib 파일에서 로드 된 뷰에서 추가 초기화를 수행하려면 일반적으로 이 방법을 대체합니다. This method is called after the view controller has loade.. NSObject Class NSObject 서브 클래스가 런타임 시스템에 대한 기본 인터페이스와 Objective-C 오브젝트로 작동하는 기능을 상속하는 대부분의 Objective-C 클래스 계층 구조의 루트 클래스 The root class of most Objective-C class hierarchies, from which subclasses inherit a basic interface to the runtime system and the ability to behave as Objective-C objects. 선언 Declaration class NSObject 화제(주제) Topics 클래스 초기화 Initializing a Class class func initialize() 첫 번째 메시지를 받기 전에.. [ 깃허브 ] Hello World GitHub / What is GitHub? Hello World 프로젝트는 컴퓨터 프로그래밍의 오랜 전통입니다. 새로운 것을 배울 때 시작하는 간단한 운동입니다. GitHub를 시작하겠습니다! The Hello World project is a time-honored tradition in computer programming. It is a simple exercise that gets you started when learning something new. Let’s get started with GitHub! 다음과 같은 방법을 배우십시오. 저장소 생성 및 사용 새 지점 시작 및 관리 파일을 변경하고 GitHub에 커밋으로 푸시 풀 요청 열기 및 병합 You’ll learn how to: Create and use a repository S.. [iOS] CharacterSet // Foundation Structure CharacterSet 검색 작업에 사용하기위한 유니 코드 문자 값 집합입니다. A set of Unicode character values for use in search operations. Declaration 구조체 CharacterSet struct CharacterSet Overview CharacterSet은 유니 코드 호환 문자 집합을 나타냅니다. Foundation 유형은 CharacterSet을 사용하여 검색 조작을 위해 문자를 그룹화하므로 검색 중에 특정 문자 세트를 찾을 수 있습니다. 이 유형은 "기록 중 복사"동작을 제공하며 Objective-C NSCharacterSet 클래스에 연결됩니다. A CharacterSet represents.. [iOS] Predicate Programming Guide 소개 Introduction 술어는 Cocoa에서 쿼리를 지정하는 일반적인 수단을 제공합니다. 술어 시스템은 코어 데이터 및 스포트라이트를 포함하여 많은 수의 도메인을 처리 할 수 있습니다. 이 문서는 일반적으로 술어, 사용법, 구문 및 제한 사항에 대해 설명합니다. Predicates provide a general means of specifying queries in Cocoa. The predicate system is capable of handling a large number of domains, including Core Data and Spotlight. This document describes predicates in general, their use, their syntax, and.. [iOS] NSPredicate Class NSPredicate 가져오기 또는 메모리 내 필터링에 대한 검색을 제한하는 데 사용되는 논리적 조건의 정의입니다. A definition of logical conditions used to constrain a search either for a fetch or for in-memory filtering. 선언 Declaration @interface NSPredicate : NSObject 개요 Overview 예측값은 개체 집합을 필터링하는 데 사용할 수 있는 논리적 조건을 나타냅니다. NSComparisonPredicate, NSCompoundPredicate 및 NSExpression 인스턴스에서 직접 술어를 만드는 것이 일반적이지만, NSPredicate의 클래스 메서드로 구문 분.. 이전 1 2 3 4 5 다음