有一种方法
- (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(NSLineBreakMode)lineBreakMode alignment:(NSTextAlignment)alignment;
我现在必须为 iOS 7 替换它。我做到了
NSDictionary *attributes = @{NSFontAttributeName: font};
[self drawInRect:rect withAttributes:attributes];
但是如何指定换行等换行模式?我搜索了属性字符串绘图符号的文档,但没有提到换行模式。这是否总是自动换行?