mirror of https://github.com/axmolengine/axmol.git
merge pull request to resolve deprecation warnings
This commit is contained in:
commit
5e225467e4
|
@ -118,15 +118,18 @@
|
||||||
}
|
}
|
||||||
size.width = MIN(size.width, origSize.width);
|
size.width = MIN(size.width, origSize.width);
|
||||||
// adjust the point for alignment
|
// adjust the point for alignment
|
||||||
switch (self.textAlignment) {
|
switch ((NSTextAlignment)self.textAlignment) {
|
||||||
case UITextAlignmentLeft:
|
case NSTextAlignmentLeft:
|
||||||
break;
|
break;
|
||||||
case UITextAlignmentCenter:
|
case NSTextAlignmentCenter:
|
||||||
point.x += (origSize.width - size.width) / 2.0f;
|
point.x += (origSize.width - size.width) / 2.0f;
|
||||||
break;
|
break;
|
||||||
case UITextAlignmentRight:
|
case NSTextAlignmentRight:
|
||||||
point.x += origSize.width - size.width;
|
point.x += origSize.width - size.width;
|
||||||
break;
|
break;
|
||||||
|
case NSTextAlignmentJustified:
|
||||||
|
case NSTextAlignmentNatural:
|
||||||
|
default: break;
|
||||||
}
|
}
|
||||||
[self.text drawAtPoint:point forWidth:size.width withZFont:actualFont lineBreakMode:self.lineBreakMode];
|
[self.text drawAtPoint:point forWidth:size.width withZFont:actualFont lineBreakMode:self.lineBreakMode];
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -637,16 +637,19 @@ static CGSize drawOrSizeTextConstrainedToSize(BOOL performDraw, NSString *string
|
||||||
|
|
||||||
// draw
|
// draw
|
||||||
if (performDraw) {
|
if (performDraw) {
|
||||||
switch (alignment) {
|
switch ((NSTextAlignment)alignment) {
|
||||||
case UITextAlignmentLeft:
|
case NSTextAlignmentLeft:
|
||||||
drawPoint.x = 0;
|
drawPoint.x = 0;
|
||||||
break;
|
break;
|
||||||
case UITextAlignmentCenter:
|
case NSTextAlignmentCenter:
|
||||||
drawPoint.x = (constrainedSize.width - lineSize.width) / 2.0f;
|
drawPoint.x = (constrainedSize.width - lineSize.width) / 2.0f;
|
||||||
break;
|
break;
|
||||||
case UITextAlignmentRight:
|
case NSTextAlignmentRight:
|
||||||
drawPoint.x = constrainedSize.width - lineSize.width;
|
drawPoint.x = constrainedSize.width - lineSize.width;
|
||||||
break;
|
break;
|
||||||
|
case NSTextAlignmentJustified:
|
||||||
|
case NSTextAlignmentNatural:
|
||||||
|
default: break;
|
||||||
}
|
}
|
||||||
NSUInteger stopGlyphIdx = glyphIdx;
|
NSUInteger stopGlyphIdx = glyphIdx;
|
||||||
NSUInteger lastRunIdx = currentRunIdx;
|
NSUInteger lastRunIdx = currentRunIdx;
|
||||||
|
|
Loading…
Reference in New Issue