Я обновил свой вопрос Определение UILabel (в iPhone SDK), чтобы оно соответствовало?" с описанием моей проблемы с предлагаемым решением, но не получить ответ. Возможно, у меня будут лучшие результаты, задав новый вопрос...
Я установил точку останова после следующего кода:
NSString *theText = @"When in the Course of human events, it becomes necessary for one people to dissolve the political bands which have connected them with another, and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.";
CGSize theSize = [theText sizeWithFont:[UIFont systemFontOfSize:17.0f] forWidth:260.0 lineBreakMode:UILineBreakModeWordWrap];
theSize.height
равно 21, а theSize.width
равно 231. Что я делаю неправильно? Эта высота не может быть в пикселях или в количестве строк.
Обратите внимание, что [UIFont systemFontOfSize:17.0f]
предназначен для указания шрифта по умолчанию.
Обновить: я изменил код на:
CGSize constraintSize;
constraintSize.width = 260.0f;
constraintSize.height = MAXFLOAT;
NSString *theText = @"When in the Course of human events, it becomes necessary for one people to dissolve the political bands which have connected them with another, and to assume among the powers of the earth, the separate and equal station to which the Laws of Nature and of Nature God entitle them, a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation.";
CGSize theSize = [theText sizeWithFont:[UIFont systemFontOfSize:17.0f] constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];
theSize.height
- 273. Это похоже на это.