5

I am reading up on NSCharacterSet. Can anyone tell me (with an example if possible) what characters are in the category "Marks"?

jscs
  • 63,694
  • 13
  • 151
  • 195
tranvutuan
  • 6,089
  • 8
  • 47
  • 83

1 Answers1

2

The docs have a short description:

nonBaseCharacterSet

Returns a character set containing the characters in the category of Marks.

+ (id)nonBaseCharacterSet
Return Value
A character set containing the characters in the category of Marks.

Discussion
This set is also defined as all legal Unicode characters with a non-spacing priority greater than 0. Informally, this set is the set of all characters used as modifiers of base characters.

jscs
  • 63,694
  • 13
  • 151
  • 195