ios - Where is NSLineSeparatorCharacter defined? -
I'm searching googling, grepping and high and low, but can not find the answer iOS ? Those constants are defined in
NSLineSeparatorCharacter NSNewLineCharacter NSParagraphSeparatorCharacter To get the definition of these constants, which header file do I need to include?
NSText.h which is for OS X, not iOS. So you can not use those constants in iOS. NSLAN Separator Carrier is defined as: 0x2028 forms of NSNewLineCharacter Is defined as: 0x000a NSParagraphSeparatorCharacter is defined as: 0x2029 < / Div>
Comments
Post a Comment