This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface HTMLLineBreakConvertor : NSObject <NSXMLParserDelegate> { | |
NSMutableString* resultString; | |
NSDictionary* tags; | |
} | |
- (NSString*)convertEntiesInString:(NSString*)s; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface LabelSizer : NSObject { | |
} | |
+(float)getExpectedHeightForLabel:(UILabel*)label; | |
+(float)makeLabelCorrectSizeForCurrentWidth:(UILabel*)label; | |
+(float)getExpectedHeightForText:(NSString*)text withFontName:(NSString*)font atSize:(float)fontSize inContainerWidth:(float)width; | |
@end |
NewerOlder