Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to split a NSString into several lines with different width, I find this method [NSString sizeWithFont:forWidth:lineBreakMode:] in the doc,but it doesn't provide the position where the linebreak take place. Is there any method in IOS that workes like the following in symbian:

class CFont :
TextCount()
IMPORT_C TInt TextCount(const TDesC &aText, TInt aWidthInPixels) const;

Description Gets how much of the specified descriptor can be displayed in this font without exceeding the specified width.

Note:

This function does not display any of the descriptor itself - it is used before display, to test whether the whole descriptor can be displayed.

Parameters:

const TDesC &aText The descriptor. TInt aWidthInPixels The available width for character display.

Return value:

TInt The number of characters which will be able to be displayed without exceeding the specified width. The count starts from the beginning of the descriptor.

TextCount()
IMPORT_C TInt TextCount(const TDesC &aText, TInt aWidthInPixels) const;

Description: Gets how much of the specified descriptor can be displayed in this font without exceeding the specified width.

Note:

This function does not display any of the descriptor itself - it is used before display, to test whether the whole descriptor can be displayed.

Parameters:

const TDesC &aText The descriptor.

TInt aWidthInPixels The available width for character display.

Return value:

TInt The number of characters which will be able to be displayed without exceeding the specified width. The count starts from the beginning of the descriptor.

share|improve this question

1 Answer

I think that

sizeWithFont:constrainedToSize:lineBreakMode:

maybe what you need. see What is -[NSString sizeWithFont:forWidth:lineBreakMode:] good for?

share|improve this answer
beacuse I want to get the string each line,but these method only provide the string’s bounding box. – pnchen Dec 10 '10 at 5:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.