This file contains 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
/*根据uilabel的内容决定uilabel的高度--iOS7之前*/ | |
CGSize maximumSize = CGSizeMake(scrollView.width - 10, 999); | |
NSString *dateString = _passport_useZone.text; | |
UIFont *dateFont = [UIFont fontWithName:@"Helvetica" size:14]; | |
CGSize dateStringSize = [dateString sizeWithFont:dateFont constrainedToSize:maximumSize lineBreakMode:_passport_useZone.lineBreakMode]; | |
CGRect dateFrame = CGRectMake(5, _passport_money.bottom, scrollView.width - 10, dateStringSize.height); | |
_passport_useZone.frame = dateFrame; | |
/*iOS7之后* | |
CGSize maximumSize = CGSizeMake(300, 9999); |