ios - Where is NSLineSeparatorCharacter defined? -


I'm searching googling, grepping and high and low, but can not find the answer iOS ?

  NSLineSeparatorCharacter NSNewLineCharacter NSParagraphSeparatorCharacter    To get the definition of these constants, which header file do I need to include? 

Those constants are defined in 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

Popular posts from this blog

excel vba - How to delete Solver(SOLVER.XLAM) code -

github - Teamcity & Git - PR merge builds - anyway to get HEAD commit hash? -

ios - Replace text in UITextView run slowly -