From 0aeb2c4f959dcdff95f8a2b6549d0dc9f65be091 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Fri, 29 Apr 2016 21:11:24 +0200 Subject: [PATCH] #86 Is there anyway to get a significantly larger font on IOS and Android? - center align on iOS --- src/ios/Toast+UIView.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ios/Toast+UIView.m b/src/ios/Toast+UIView.m index 5ba14a7..2a1b02c 100644 --- a/src/ios/Toast+UIView.m +++ b/src/ios/Toast+UIView.m @@ -357,7 +357,7 @@ static id styling; titleLabel = [[UILabel alloc] init]; titleLabel.numberOfLines = CSToastMaxTitleLines; titleLabel.font = [UIFont boldSystemFontOfSize:theTextSize]; - titleLabel.textAlignment = NSTextAlignmentLeft; + titleLabel.textAlignment = NSTextAlignmentCenter; titleLabel.lineBreakMode = NSLineBreakByWordWrapping; titleLabel.textColor = theTitleLabelTextColor; titleLabel.backgroundColor = [UIColor clearColor]; @@ -378,6 +378,7 @@ static id styling; messageLabel.numberOfLines = CSToastMaxMessageLines; messageLabel.font = [UIFont systemFontOfSize:theTextSize]; messageLabel.lineBreakMode = NSLineBreakByWordWrapping; + messageLabel.textAlignment = NSTextAlignmentCenter; messageLabel.textColor = theMessageLabelTextColor; messageLabel.backgroundColor = [UIColor clearColor]; messageLabel.alpha = 1.0;