How to change font of UIButton with Swift
I am trying to change the font of a UIButton using Swift...
myButton.font = UIFont(name: "...", 10)
However .font
is deprecated and I'm not sure how to change the font otherwise.
Any suggestions?
ios uibutton swift uifont
add a comment |
I am trying to change the font of a UIButton using Swift...
myButton.font = UIFont(name: "...", 10)
However .font
is deprecated and I'm not sure how to change the font otherwise.
Any suggestions?
ios uibutton swift uifont
add a comment |
I am trying to change the font of a UIButton using Swift...
myButton.font = UIFont(name: "...", 10)
However .font
is deprecated and I'm not sure how to change the font otherwise.
Any suggestions?
ios uibutton swift uifont
I am trying to change the font of a UIButton using Swift...
myButton.font = UIFont(name: "...", 10)
However .font
is deprecated and I'm not sure how to change the font otherwise.
Any suggestions?
ios uibutton swift uifont
ios uibutton swift uifont
edited Jul 28 '14 at 18:42


rmaddy
244k27322383
244k27322383
asked Jul 28 '14 at 18:39


Stephen FoxStephen Fox
4,795173950
4,795173950
add a comment |
add a comment |
15 Answers
15
active
oldest
votes
Use titleLabel
instead. The font
property is deprecated in iOS 3.0. It also does not work in Objective-C. titleLabel
is label used for showing title on UIButton
.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
However, while setting title text you should only use setTitle:forControlState:
. Do not use titleLabel
to set any text for title directly.
1
Do you guys know why I have to 'unwrap'? my label?? like this... myButton.titleLabel!.font = ...
– DanMoore
Sep 13 '14 at 2:18
beacausetitleLabel
is optional property.Thanks previously in beta it was not.
– codester
Sep 13 '14 at 3:58
4
This method allowed me to change my font name/style, but changing the size property made no difference.
– Dave G
Aug 24 '15 at 17:17
7
You don't need to force unwrap the label.myButton.titleLabel?.font = ...
will work since if titleLabel is nil it will just be a no-op
– teradyl
Mar 11 '16 at 19:37
add a comment |
For Swift 3.0:
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)
where "boldSystemFont" and "16" can be replaced with your custom font and size.
add a comment |
Dot-notation is awesome (swift 4.2) 👌
btn.titleLabel?.font = .systemFont(ofSize: 12)
this work for me, thanks. I want change text size only not change font name.
– mahasam
Aug 14 '18 at 2:47
@mahasam UIFont is inferred, this answer is the same than the others but just without UIFont (but becasuse it is inferred by the compiler, but it is the same) P.D: I always try to write in this way, but just to let you know that is the same
– Pablo Sanchez Gomez
Oct 19 '18 at 10:39
@mahasam: "Dot-notation" is the same as inferred. And yes It's a good habit to adopt. And it's not the same answers as others as its more succinct than other answers. IMO
– eonist
Oct 19 '18 at 10:50
add a comment |
You don't need to force unwrap the titleLabel to set it.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
Since you're not using the titleLabel here, you can just optionally use it and if it's nil it will just be a no-op.
I'll also add as other people are saying, the font property is deprecated, and make sure to use setTitle:forControlState:
when setting the title text.
add a comment |
From the documentation:
The font used to display text on the button. (Deprecated in iOS 3.0. Use the
font
property of thetitleLabel
instead.)
add a comment |
If you're having font size issues (your font isn't responding to size changes)...
@codester has the right code:
myButton.titleLabel!.font = UIFont(name: YourfontName, size: 20)
However, my font size wasn't changing. It turns out that I asking for a font that didn't exist ("HelveticaNeue-Regular"). It wasn't causing a crash, but seemed to be just ignoring that font statement because of it. Once I changed the font to something that does exist, changes to "size: x" did render.
add a comment |
You should go through the titleLabel
property.
button.titleLabel.font
The font
property has been deprecated since iOS 3.0.
add a comment |
Take a look here.
You should set the font of the button's titleLabel instead.
myButton.titleLabel!.font = UIFont(name: "...", 10)
this is wrong you need myButton.titleLabel!.font
– Sam B
Sep 30 '14 at 13:34
add a comment |
This works in Swift 3.0:
btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)
add a comment |
If you are setting AttributedString to the UIButton then you can do the below thing.
let attributedText = NSAttributedString(string: "Hello", attributes: [NSAttributedStringKey.font: UIFont(name: "Calibri", size: 19)])
okayButton.setAttributedTitle(attributedText, for: .normal)
add a comment |
If you need to change only size (Swift 4.0):
button.titleLabel?.font = button.titleLabel?.font.withSize(12)
add a comment |
we can use different types of system fonts like below
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 17)
myButton.titleLabel?.font = UIFont.italicSystemFont(ofSize:UIFont.smallSystemFontSize)
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: UIFont.buttonFontSize)
and your custom font like below
myButton.titleLabel?.font = UIFont(name: "Helvetica", size:12)
add a comment |
This way doesn't work now:
btn.titleLabel?.font = UIFont(name: "Helvetica", size:12)
This works:
btn.titleLabel?.font = UIFont.init(name: "Helvetica", size:12)
add a comment |
Example: button.titleLabel?.font = UIFont(name: "HelveticaNeue-Bold", size: 12)
- If you want to use defaul font from it's own family, use for example: "HelveticaNeue"
- If you want to specify family font, use for example: "HelveticaNeue-Bold"
add a comment |
this work for me, thanks. I want change text size only not change font name.
var fontSizeButtonBig:Int = 30
btnMenu9.titleLabel?.font = .systemFont(ofSize: CGFloat(fontSizeButtonBig))
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25002017%2fhow-to-change-font-of-uibutton-with-swift%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
15 Answers
15
active
oldest
votes
15 Answers
15
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use titleLabel
instead. The font
property is deprecated in iOS 3.0. It also does not work in Objective-C. titleLabel
is label used for showing title on UIButton
.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
However, while setting title text you should only use setTitle:forControlState:
. Do not use titleLabel
to set any text for title directly.
1
Do you guys know why I have to 'unwrap'? my label?? like this... myButton.titleLabel!.font = ...
– DanMoore
Sep 13 '14 at 2:18
beacausetitleLabel
is optional property.Thanks previously in beta it was not.
– codester
Sep 13 '14 at 3:58
4
This method allowed me to change my font name/style, but changing the size property made no difference.
– Dave G
Aug 24 '15 at 17:17
7
You don't need to force unwrap the label.myButton.titleLabel?.font = ...
will work since if titleLabel is nil it will just be a no-op
– teradyl
Mar 11 '16 at 19:37
add a comment |
Use titleLabel
instead. The font
property is deprecated in iOS 3.0. It also does not work in Objective-C. titleLabel
is label used for showing title on UIButton
.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
However, while setting title text you should only use setTitle:forControlState:
. Do not use titleLabel
to set any text for title directly.
1
Do you guys know why I have to 'unwrap'? my label?? like this... myButton.titleLabel!.font = ...
– DanMoore
Sep 13 '14 at 2:18
beacausetitleLabel
is optional property.Thanks previously in beta it was not.
– codester
Sep 13 '14 at 3:58
4
This method allowed me to change my font name/style, but changing the size property made no difference.
– Dave G
Aug 24 '15 at 17:17
7
You don't need to force unwrap the label.myButton.titleLabel?.font = ...
will work since if titleLabel is nil it will just be a no-op
– teradyl
Mar 11 '16 at 19:37
add a comment |
Use titleLabel
instead. The font
property is deprecated in iOS 3.0. It also does not work in Objective-C. titleLabel
is label used for showing title on UIButton
.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
However, while setting title text you should only use setTitle:forControlState:
. Do not use titleLabel
to set any text for title directly.
Use titleLabel
instead. The font
property is deprecated in iOS 3.0. It also does not work in Objective-C. titleLabel
is label used for showing title on UIButton
.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
However, while setting title text you should only use setTitle:forControlState:
. Do not use titleLabel
to set any text for title directly.
edited Oct 30 '18 at 12:19


Giovanni Terlingen
3,16611129
3,16611129
answered Jul 28 '14 at 18:42
codestercodester
27.2k96468
27.2k96468
1
Do you guys know why I have to 'unwrap'? my label?? like this... myButton.titleLabel!.font = ...
– DanMoore
Sep 13 '14 at 2:18
beacausetitleLabel
is optional property.Thanks previously in beta it was not.
– codester
Sep 13 '14 at 3:58
4
This method allowed me to change my font name/style, but changing the size property made no difference.
– Dave G
Aug 24 '15 at 17:17
7
You don't need to force unwrap the label.myButton.titleLabel?.font = ...
will work since if titleLabel is nil it will just be a no-op
– teradyl
Mar 11 '16 at 19:37
add a comment |
1
Do you guys know why I have to 'unwrap'? my label?? like this... myButton.titleLabel!.font = ...
– DanMoore
Sep 13 '14 at 2:18
beacausetitleLabel
is optional property.Thanks previously in beta it was not.
– codester
Sep 13 '14 at 3:58
4
This method allowed me to change my font name/style, but changing the size property made no difference.
– Dave G
Aug 24 '15 at 17:17
7
You don't need to force unwrap the label.myButton.titleLabel?.font = ...
will work since if titleLabel is nil it will just be a no-op
– teradyl
Mar 11 '16 at 19:37
1
1
Do you guys know why I have to 'unwrap'? my label?? like this... myButton.titleLabel!.font = ...
– DanMoore
Sep 13 '14 at 2:18
Do you guys know why I have to 'unwrap'? my label?? like this... myButton.titleLabel!.font = ...
– DanMoore
Sep 13 '14 at 2:18
beacause
titleLabel
is optional property.Thanks previously in beta it was not.– codester
Sep 13 '14 at 3:58
beacause
titleLabel
is optional property.Thanks previously in beta it was not.– codester
Sep 13 '14 at 3:58
4
4
This method allowed me to change my font name/style, but changing the size property made no difference.
– Dave G
Aug 24 '15 at 17:17
This method allowed me to change my font name/style, but changing the size property made no difference.
– Dave G
Aug 24 '15 at 17:17
7
7
You don't need to force unwrap the label.
myButton.titleLabel?.font = ...
will work since if titleLabel is nil it will just be a no-op– teradyl
Mar 11 '16 at 19:37
You don't need to force unwrap the label.
myButton.titleLabel?.font = ...
will work since if titleLabel is nil it will just be a no-op– teradyl
Mar 11 '16 at 19:37
add a comment |
For Swift 3.0:
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)
where "boldSystemFont" and "16" can be replaced with your custom font and size.
add a comment |
For Swift 3.0:
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)
where "boldSystemFont" and "16" can be replaced with your custom font and size.
add a comment |
For Swift 3.0:
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)
where "boldSystemFont" and "16" can be replaced with your custom font and size.
For Swift 3.0:
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)
where "boldSystemFont" and "16" can be replaced with your custom font and size.
answered Jan 6 '17 at 11:30
ruthless_gruthless_g
64154
64154
add a comment |
add a comment |
Dot-notation is awesome (swift 4.2) 👌
btn.titleLabel?.font = .systemFont(ofSize: 12)
this work for me, thanks. I want change text size only not change font name.
– mahasam
Aug 14 '18 at 2:47
@mahasam UIFont is inferred, this answer is the same than the others but just without UIFont (but becasuse it is inferred by the compiler, but it is the same) P.D: I always try to write in this way, but just to let you know that is the same
– Pablo Sanchez Gomez
Oct 19 '18 at 10:39
@mahasam: "Dot-notation" is the same as inferred. And yes It's a good habit to adopt. And it's not the same answers as others as its more succinct than other answers. IMO
– eonist
Oct 19 '18 at 10:50
add a comment |
Dot-notation is awesome (swift 4.2) 👌
btn.titleLabel?.font = .systemFont(ofSize: 12)
this work for me, thanks. I want change text size only not change font name.
– mahasam
Aug 14 '18 at 2:47
@mahasam UIFont is inferred, this answer is the same than the others but just without UIFont (but becasuse it is inferred by the compiler, but it is the same) P.D: I always try to write in this way, but just to let you know that is the same
– Pablo Sanchez Gomez
Oct 19 '18 at 10:39
@mahasam: "Dot-notation" is the same as inferred. And yes It's a good habit to adopt. And it's not the same answers as others as its more succinct than other answers. IMO
– eonist
Oct 19 '18 at 10:50
add a comment |
Dot-notation is awesome (swift 4.2) 👌
btn.titleLabel?.font = .systemFont(ofSize: 12)
Dot-notation is awesome (swift 4.2) 👌
btn.titleLabel?.font = .systemFont(ofSize: 12)
edited Jan 10 at 4:08
answered May 16 '18 at 12:03


eonisteonist
1,9941916
1,9941916
this work for me, thanks. I want change text size only not change font name.
– mahasam
Aug 14 '18 at 2:47
@mahasam UIFont is inferred, this answer is the same than the others but just without UIFont (but becasuse it is inferred by the compiler, but it is the same) P.D: I always try to write in this way, but just to let you know that is the same
– Pablo Sanchez Gomez
Oct 19 '18 at 10:39
@mahasam: "Dot-notation" is the same as inferred. And yes It's a good habit to adopt. And it's not the same answers as others as its more succinct than other answers. IMO
– eonist
Oct 19 '18 at 10:50
add a comment |
this work for me, thanks. I want change text size only not change font name.
– mahasam
Aug 14 '18 at 2:47
@mahasam UIFont is inferred, this answer is the same than the others but just without UIFont (but becasuse it is inferred by the compiler, but it is the same) P.D: I always try to write in this way, but just to let you know that is the same
– Pablo Sanchez Gomez
Oct 19 '18 at 10:39
@mahasam: "Dot-notation" is the same as inferred. And yes It's a good habit to adopt. And it's not the same answers as others as its more succinct than other answers. IMO
– eonist
Oct 19 '18 at 10:50
this work for me, thanks. I want change text size only not change font name.
– mahasam
Aug 14 '18 at 2:47
this work for me, thanks. I want change text size only not change font name.
– mahasam
Aug 14 '18 at 2:47
@mahasam UIFont is inferred, this answer is the same than the others but just without UIFont (but becasuse it is inferred by the compiler, but it is the same) P.D: I always try to write in this way, but just to let you know that is the same
– Pablo Sanchez Gomez
Oct 19 '18 at 10:39
@mahasam UIFont is inferred, this answer is the same than the others but just without UIFont (but becasuse it is inferred by the compiler, but it is the same) P.D: I always try to write in this way, but just to let you know that is the same
– Pablo Sanchez Gomez
Oct 19 '18 at 10:39
@mahasam: "Dot-notation" is the same as inferred. And yes It's a good habit to adopt. And it's not the same answers as others as its more succinct than other answers. IMO
– eonist
Oct 19 '18 at 10:50
@mahasam: "Dot-notation" is the same as inferred. And yes It's a good habit to adopt. And it's not the same answers as others as its more succinct than other answers. IMO
– eonist
Oct 19 '18 at 10:50
add a comment |
You don't need to force unwrap the titleLabel to set it.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
Since you're not using the titleLabel here, you can just optionally use it and if it's nil it will just be a no-op.
I'll also add as other people are saying, the font property is deprecated, and make sure to use setTitle:forControlState:
when setting the title text.
add a comment |
You don't need to force unwrap the titleLabel to set it.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
Since you're not using the titleLabel here, you can just optionally use it and if it's nil it will just be a no-op.
I'll also add as other people are saying, the font property is deprecated, and make sure to use setTitle:forControlState:
when setting the title text.
add a comment |
You don't need to force unwrap the titleLabel to set it.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
Since you're not using the titleLabel here, you can just optionally use it and if it's nil it will just be a no-op.
I'll also add as other people are saying, the font property is deprecated, and make sure to use setTitle:forControlState:
when setting the title text.
You don't need to force unwrap the titleLabel to set it.
myButton.titleLabel?.font = UIFont(name: YourfontName, size: 20)
Since you're not using the titleLabel here, you can just optionally use it and if it's nil it will just be a no-op.
I'll also add as other people are saying, the font property is deprecated, and make sure to use setTitle:forControlState:
when setting the title text.
answered Mar 11 '16 at 19:34
teradylteradyl
1,0971220
1,0971220
add a comment |
add a comment |
From the documentation:
The font used to display text on the button. (Deprecated in iOS 3.0. Use the
font
property of thetitleLabel
instead.)
add a comment |
From the documentation:
The font used to display text on the button. (Deprecated in iOS 3.0. Use the
font
property of thetitleLabel
instead.)
add a comment |
From the documentation:
The font used to display text on the button. (Deprecated in iOS 3.0. Use the
font
property of thetitleLabel
instead.)
From the documentation:
The font used to display text on the button. (Deprecated in iOS 3.0. Use the
font
property of thetitleLabel
instead.)
answered Jul 28 '14 at 18:42
zneakzneak
98.5k31212276
98.5k31212276
add a comment |
add a comment |
If you're having font size issues (your font isn't responding to size changes)...
@codester has the right code:
myButton.titleLabel!.font = UIFont(name: YourfontName, size: 20)
However, my font size wasn't changing. It turns out that I asking for a font that didn't exist ("HelveticaNeue-Regular"). It wasn't causing a crash, but seemed to be just ignoring that font statement because of it. Once I changed the font to something that does exist, changes to "size: x" did render.
add a comment |
If you're having font size issues (your font isn't responding to size changes)...
@codester has the right code:
myButton.titleLabel!.font = UIFont(name: YourfontName, size: 20)
However, my font size wasn't changing. It turns out that I asking for a font that didn't exist ("HelveticaNeue-Regular"). It wasn't causing a crash, but seemed to be just ignoring that font statement because of it. Once I changed the font to something that does exist, changes to "size: x" did render.
add a comment |
If you're having font size issues (your font isn't responding to size changes)...
@codester has the right code:
myButton.titleLabel!.font = UIFont(name: YourfontName, size: 20)
However, my font size wasn't changing. It turns out that I asking for a font that didn't exist ("HelveticaNeue-Regular"). It wasn't causing a crash, but seemed to be just ignoring that font statement because of it. Once I changed the font to something that does exist, changes to "size: x" did render.
If you're having font size issues (your font isn't responding to size changes)...
@codester has the right code:
myButton.titleLabel!.font = UIFont(name: YourfontName, size: 20)
However, my font size wasn't changing. It turns out that I asking for a font that didn't exist ("HelveticaNeue-Regular"). It wasn't causing a crash, but seemed to be just ignoring that font statement because of it. Once I changed the font to something that does exist, changes to "size: x" did render.
answered Apr 19 '16 at 12:50


Dave GDave G
6,24363661
6,24363661
add a comment |
add a comment |
You should go through the titleLabel
property.
button.titleLabel.font
The font
property has been deprecated since iOS 3.0.
add a comment |
You should go through the titleLabel
property.
button.titleLabel.font
The font
property has been deprecated since iOS 3.0.
add a comment |
You should go through the titleLabel
property.
button.titleLabel.font
The font
property has been deprecated since iOS 3.0.
You should go through the titleLabel
property.
button.titleLabel.font
The font
property has been deprecated since iOS 3.0.
answered Jul 28 '14 at 18:43
Chris WagnerChris Wagner
17.4k76689
17.4k76689
add a comment |
add a comment |
Take a look here.
You should set the font of the button's titleLabel instead.
myButton.titleLabel!.font = UIFont(name: "...", 10)
this is wrong you need myButton.titleLabel!.font
– Sam B
Sep 30 '14 at 13:34
add a comment |
Take a look here.
You should set the font of the button's titleLabel instead.
myButton.titleLabel!.font = UIFont(name: "...", 10)
this is wrong you need myButton.titleLabel!.font
– Sam B
Sep 30 '14 at 13:34
add a comment |
Take a look here.
You should set the font of the button's titleLabel instead.
myButton.titleLabel!.font = UIFont(name: "...", 10)
Take a look here.
You should set the font of the button's titleLabel instead.
myButton.titleLabel!.font = UIFont(name: "...", 10)
edited May 23 '17 at 12:10
Community♦
11
11
answered Jul 28 '14 at 18:42
ConnorConnor
52.1k23114131
52.1k23114131
this is wrong you need myButton.titleLabel!.font
– Sam B
Sep 30 '14 at 13:34
add a comment |
this is wrong you need myButton.titleLabel!.font
– Sam B
Sep 30 '14 at 13:34
this is wrong you need myButton.titleLabel!.font
– Sam B
Sep 30 '14 at 13:34
this is wrong you need myButton.titleLabel!.font
– Sam B
Sep 30 '14 at 13:34
add a comment |
This works in Swift 3.0:
btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)
add a comment |
This works in Swift 3.0:
btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)
add a comment |
This works in Swift 3.0:
btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)
This works in Swift 3.0:
btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)
edited Aug 21 '17 at 7:25


Bugs
4,14992537
4,14992537
answered Aug 21 '17 at 7:15
ramram
592
592
add a comment |
add a comment |
If you are setting AttributedString to the UIButton then you can do the below thing.
let attributedText = NSAttributedString(string: "Hello", attributes: [NSAttributedStringKey.font: UIFont(name: "Calibri", size: 19)])
okayButton.setAttributedTitle(attributedText, for: .normal)
add a comment |
If you are setting AttributedString to the UIButton then you can do the below thing.
let attributedText = NSAttributedString(string: "Hello", attributes: [NSAttributedStringKey.font: UIFont(name: "Calibri", size: 19)])
okayButton.setAttributedTitle(attributedText, for: .normal)
add a comment |
If you are setting AttributedString to the UIButton then you can do the below thing.
let attributedText = NSAttributedString(string: "Hello", attributes: [NSAttributedStringKey.font: UIFont(name: "Calibri", size: 19)])
okayButton.setAttributedTitle(attributedText, for: .normal)
If you are setting AttributedString to the UIButton then you can do the below thing.
let attributedText = NSAttributedString(string: "Hello", attributes: [NSAttributedStringKey.font: UIFont(name: "Calibri", size: 19)])
okayButton.setAttributedTitle(attributedText, for: .normal)
answered Apr 26 '18 at 5:42


Anirudha MahaleAnirudha Mahale
5671719
5671719
add a comment |
add a comment |
If you need to change only size (Swift 4.0):
button.titleLabel?.font = button.titleLabel?.font.withSize(12)
add a comment |
If you need to change only size (Swift 4.0):
button.titleLabel?.font = button.titleLabel?.font.withSize(12)
add a comment |
If you need to change only size (Swift 4.0):
button.titleLabel?.font = button.titleLabel?.font.withSize(12)
If you need to change only size (Swift 4.0):
button.titleLabel?.font = button.titleLabel?.font.withSize(12)
answered Sep 16 '18 at 21:51
KarbamanKarbaman
1,9461611
1,9461611
add a comment |
add a comment |
we can use different types of system fonts like below
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 17)
myButton.titleLabel?.font = UIFont.italicSystemFont(ofSize:UIFont.smallSystemFontSize)
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: UIFont.buttonFontSize)
and your custom font like below
myButton.titleLabel?.font = UIFont(name: "Helvetica", size:12)
add a comment |
we can use different types of system fonts like below
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 17)
myButton.titleLabel?.font = UIFont.italicSystemFont(ofSize:UIFont.smallSystemFontSize)
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: UIFont.buttonFontSize)
and your custom font like below
myButton.titleLabel?.font = UIFont(name: "Helvetica", size:12)
add a comment |
we can use different types of system fonts like below
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 17)
myButton.titleLabel?.font = UIFont.italicSystemFont(ofSize:UIFont.smallSystemFontSize)
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: UIFont.buttonFontSize)
and your custom font like below
myButton.titleLabel?.font = UIFont(name: "Helvetica", size:12)
we can use different types of system fonts like below
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 17)
myButton.titleLabel?.font = UIFont.italicSystemFont(ofSize:UIFont.smallSystemFontSize)
myButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: UIFont.buttonFontSize)
and your custom font like below
myButton.titleLabel?.font = UIFont(name: "Helvetica", size:12)
answered Jan 1 at 7:40


Sultan AliSultan Ali
512514
512514
add a comment |
add a comment |
This way doesn't work now:
btn.titleLabel?.font = UIFont(name: "Helvetica", size:12)
This works:
btn.titleLabel?.font = UIFont.init(name: "Helvetica", size:12)
add a comment |
This way doesn't work now:
btn.titleLabel?.font = UIFont(name: "Helvetica", size:12)
This works:
btn.titleLabel?.font = UIFont.init(name: "Helvetica", size:12)
add a comment |
This way doesn't work now:
btn.titleLabel?.font = UIFont(name: "Helvetica", size:12)
This works:
btn.titleLabel?.font = UIFont.init(name: "Helvetica", size:12)
This way doesn't work now:
btn.titleLabel?.font = UIFont(name: "Helvetica", size:12)
This works:
btn.titleLabel?.font = UIFont.init(name: "Helvetica", size:12)
answered Jan 25 '17 at 15:38


RealNmaeRealNmae
336413
336413
add a comment |
add a comment |
Example: button.titleLabel?.font = UIFont(name: "HelveticaNeue-Bold", size: 12)
- If you want to use defaul font from it's own family, use for example: "HelveticaNeue"
- If you want to specify family font, use for example: "HelveticaNeue-Bold"
add a comment |
Example: button.titleLabel?.font = UIFont(name: "HelveticaNeue-Bold", size: 12)
- If you want to use defaul font from it's own family, use for example: "HelveticaNeue"
- If you want to specify family font, use for example: "HelveticaNeue-Bold"
add a comment |
Example: button.titleLabel?.font = UIFont(name: "HelveticaNeue-Bold", size: 12)
- If you want to use defaul font from it's own family, use for example: "HelveticaNeue"
- If you want to specify family font, use for example: "HelveticaNeue-Bold"
Example: button.titleLabel?.font = UIFont(name: "HelveticaNeue-Bold", size: 12)
- If you want to use defaul font from it's own family, use for example: "HelveticaNeue"
- If you want to specify family font, use for example: "HelveticaNeue-Bold"
answered Nov 19 '17 at 12:03
janazjanaz
31827
31827
add a comment |
add a comment |
this work for me, thanks. I want change text size only not change font name.
var fontSizeButtonBig:Int = 30
btnMenu9.titleLabel?.font = .systemFont(ofSize: CGFloat(fontSizeButtonBig))
add a comment |
this work for me, thanks. I want change text size only not change font name.
var fontSizeButtonBig:Int = 30
btnMenu9.titleLabel?.font = .systemFont(ofSize: CGFloat(fontSizeButtonBig))
add a comment |
this work for me, thanks. I want change text size only not change font name.
var fontSizeButtonBig:Int = 30
btnMenu9.titleLabel?.font = .systemFont(ofSize: CGFloat(fontSizeButtonBig))
this work for me, thanks. I want change text size only not change font name.
var fontSizeButtonBig:Int = 30
btnMenu9.titleLabel?.font = .systemFont(ofSize: CGFloat(fontSizeButtonBig))
answered Aug 14 '18 at 2:51


mahasammahasam
62968
62968
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25002017%2fhow-to-change-font-of-uibutton-with-swift%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown