본문 바로가기

전체 글

(38)
[iOS] var children: [UIViewController] { get } children var children: [UIViewController] { get } 요약 현재 뷰 컨트롤러의 자식인 뷰 컨트롤러의 배열입니다. Summary An array of view controllers that are children of the current view controller. Declaration var children: [UIViewController] { get } 토론 이 속성에는 제시된 뷰 컨트롤러가 포함되어 있지 않습니다. 이 프로퍼티는 커스텀 컨테이너 뷰 컨트롤러의 구현으로만 읽을 수 있습니다. Discussion This property does not include any presented view controllers. This property is only i..
[iOS] @interface NSData : NSObject NSData @interface NSData : NSObject 요약 메모리의 정적 바이트 버퍼. Summary A static byte buffer in memory. Declaration @interface NSData : NSObject 토론 NSData 및 해당 가변 서브 클래스 NSMutableData는 바이트 버퍼를 위한 데이터 객체 또는 객체 지향 래퍼를 제공합니다. 데이터 객체를 사용하면 간단한 할당된 버퍼 (포인터가 없는 데이터)를 통해 Foundation 객체의 동작을 수행 할 수 있습니다. 데이터의 크기는 이론적으로 약 8 엑사 바이트 (1 EB = 10¹⁸ 바이트)의 제한을 받습니다 (실제로 한도는 요인이 아니어야합니다). NSData는 Core Foundation 대응 CFData..
[iOS] class ZaloSDK : NSObject ZaloSDK class ZaloSDK : NSObject 요약 Zalo에서 인증, 사용자 프로필 가져오기, 친구 목록 가져오기, 메시지 보내기, 푸시 피드 등을 수행하는데 사용할 수 있는 정적 함수가 포함 된 클래스입니다. Summary A class that contains static functions that you can use to authenticate, get user profile, get friend list, send message, push feed, etc... in Zalo. Declaration class ZaloSDK : NSObject
[iOS] protocol NSObjectProtocol NSObjectProtocol protocol NSObjectProtocol 요약 모든 Objective-C 객체에 기본이 되는 메소드 그룹입니다. Summary The group of methods that are fundamental to all Objective-C objects. Declaration protocol NSObjectProtocol 토론 노트 이 프로토콜은 NSObjectProtocol이라는 이름으로 Swift로 가져옵니다. 이 프로토콜을 따르는 개체(object)는 first-class object로 간주 될 수 있습니다. 이러한 객체(object)는 다음에 대해 요청할 수 있습니다. • 클래스 및 상속 계층에서 클래스의 위치. • 프로토콜 준수. • 특정 메시지에 응답하는 기능...
[iOS] struct UIInterfaceOrientationMask UIInterfaceOrientationMask struct UIInterfaceOrientationMask 요약 이 상수는 뷰 컨트롤러에서 지원되는 인터페이스 방향을 지정하기위한 마스크 비트입니다. Summary These constants are mask bits for specifying a view controller’s supported interface orientations. Declaration struct UIInterfaceOrientationMask 토론 iOS 8부터는 UIInterfaceOrientation 상수를 사용하거나 인터페이스 방향으로 앱을 작성하는 대신 UITraitCollection 및 UITraitEnvironment API를 사용하고 API에서 사용되는 크기 클래스..
[iOS] class LAContext : NSObject LAContext class LAContext : NSObject 요약 인증 정책 및 액세스 제어를 평가하기 위한 메커니즘 Summary A mechanism for evaluating authentication policies and access controls. Declaration class LAContext : NSObject 토론 인증 컨텍스트를 사용하여 Touch ID 또는 Face ID와 같은 생체 인식이나 장치 암호를 제공하여 사용자의 신원을 평가합니다. 이 컨텍스트는 사용자 상호 작용을 처리하고 생체 인식 데이터를 관리하는 기본 하드웨어 요소인 Secure Enclave에 대한 인터페이스도 제공합니다. 컨텍스트를 작성 및 구성하고 인증을 수행하도록 요청하십시오. 그런 다음 인증 성공 또는..
[iOS] class UIApplication : UIResponder UIApplication class UIApplication : UIResponder 요약 iOS에서 실행되는 앱의 중앙 집중식 제어 및 조정 Summary The centralized point of control and coordination for apps running in iOS. Declaration class UIApplication : UIResponder 토론 모든 iOS 앱에는 정확히 하나의 UIApplication 인스턴스 (또는 매우 드물게 UIApplication의 서브 클래스)가 있습니다. 앱이 시작되면 시스템은 UIApplicationMain (_ : _ : _ : _ :) 함수를 호출합니다. 다른 작업 중에서도 이 함수는 Singleton UIApplication 객체를 만듭..
[iOS] func ?? <T>(optional: T?, defaultValue: @autoclosure () throws -> T) rethrows -> T ?? func ?? (optional: T?, defaultValue: @autoclosure () throws -> T) rethrows -> T 요약 nil-coalescing 작업 (무-응집 작업)을 수행하여 Optional 인스턴스의 래핑된 값 또는 기본값을 반환합니다. Summary Performs a nil-coalescing operation, returning the wrapped value of an Optional instance or a default value. Declaration func ?? (optional: T?, defaultValue: @autoclosure () throws -> T) rethrows -> T 토론 nil-coalescing(무-응집) 연산은 값이 있으..