본문 바로가기

IOS 개발

[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 a set of Unicode-compliant characters. Foundation types use CharacterSet to group characters together for searching operations, so that they can find any of a particular set of characters during a search.

This type provides “copy-on-write” behavior, and is also bridged to the Objective-C NSCharacterSet class.

 

 

 

 

//AppKit

Type Property

 

characterSet

 

글꼴에서 다루는 유니코드 문자 집합을 나타내는 NSCharacterSet 인스턴스입니다.

An NSCharacterSet instance that represents the set of Unicode characters covered by the font.

 

 

 

Declaration

 

static let characterSet: NSFontDescriptor.AttributeName

 

 

 

Discussion

 

글꼴이 기본값을 제공합니다.

The default value is supplied by the font.

 

 

 

 

 

// UIKit

Type Property

 

characterSet

 

폰트로 커버되는 Unicode 문자 세트를 나타내는 NSCharacterSet 인스턴스입니다. 글꼴이 기본값을 제공합니다.

An NSCharacterSet instance that represents the set of Unicode characters covered by the font. The default value is supplied by the font.

 

 

 

Declaration

 

static let characterSet: UIFontDescriptor.AttributeName

 

 

 

 

 

 

 

 

//Web Kit

Instance Property

 

characterSet

 

사용 가능한 개요가 없습니다.

No overview available.

 

 

 

Declaration

 

var characterSet: String! { get }

 

 

 

 

 

 

 

 

 

 

[참조 : 애플공식문서 developer Documentation]