fix semi colon paste in m file

This commit is contained in:
Xinlei(Ryan) Pan 2020-02-26 13:28:23 -05:00
parent 4b31b19174
commit 80b2513feb
2 changed files with 2 additions and 2 deletions

View File

@ -338,7 +338,7 @@ static NSString * const COLLECTION_CELL_ID = @"cell";
#pragma mark - helper
- (void)pinHeight:(CGFloat)height; {
- (void)pinHeight:(CGFloat)height {
self.heightConstraint.constant = height;
[self setNeedsLayout];
[self layoutIfNeeded];

View File

@ -1019,7 +1019,7 @@ CGFloat const LabelWithInternalButtonLineSpace = 2;
return [MFStyler styleGetTitle2XLargeAttributedString:string genericScaling:YES];
}
+ (nonnull NSAttributedString *)styleGetTitle2XLargeAttributedString:(nullable NSString *)string genericScaling:(BOOL)genericScaling; {
+ (nonnull NSAttributedString *)styleGetTitle2XLargeAttributedString:(nullable NSString *)string genericScaling:(BOOL)genericScaling {
return [MFStyler styleGetAttributedString:string font:[MFStyler fontTitle2XLarge:genericScaling] color:[UIColor blackColor]];
}