How to change font of UIButton with Swift












144















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?










share|improve this question





























    144















    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?










    share|improve this question



























      144












      144








      144


      21






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 28 '14 at 18:42









      rmaddy

      244k27322383




      244k27322383










      asked Jul 28 '14 at 18:39









      Stephen FoxStephen Fox

      4,795173950




      4,795173950
























          15 Answers
          15






          active

          oldest

          votes


















          310














          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.






          share|improve this answer





















          • 1





            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






          • 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



















          54














          For Swift 3.0:



          button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)


          where "boldSystemFont" and "16" can be replaced with your custom font and size.






          share|improve this answer































            17














            Dot-notation is awesome (swift 4.2) 👌



            btn.titleLabel?.font = .systemFont(ofSize: 12)





            share|improve this answer


























            • 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



















            7














            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.






            share|improve this answer































              6














              From the documentation:




              The font used to display text on the button. (Deprecated in iOS 3.0. Use the font property of the titleLabel instead.)







              share|improve this answer































                5














                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.






                share|improve this answer































                  4














                  You should go through the titleLabel property.



                  button.titleLabel.font



                  The font property has been deprecated since iOS 3.0.






                  share|improve this answer































                    4














                    Take a look here.



                    You should set the font of the button's titleLabel instead.



                    myButton.titleLabel!.font = UIFont(name: "...", 10)





                    share|improve this answer


























                    • this is wrong you need myButton.titleLabel!.font

                      – Sam B
                      Sep 30 '14 at 13:34



















                    4














                    This works in Swift 3.0:



                    btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20) 





                    share|improve this answer

































                      3














                      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)





                      share|improve this answer































                        2














                        If you need to change only size (Swift 4.0):



                        button.titleLabel?.font = button.titleLabel?.font.withSize(12)





                        share|improve this answer































                          2














                          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)





                          share|improve this answer































                            1














                            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)





                            share|improve this answer































                              1














                              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"






                              share|improve this answer































                                0














                                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))






                                share|improve this answer























                                  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
                                  });


                                  }
                                  });














                                  draft saved

                                  draft discarded


















                                  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









                                  310














                                  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.






                                  share|improve this answer





















                                  • 1





                                    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






                                  • 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
















                                  310














                                  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.






                                  share|improve this answer





















                                  • 1





                                    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






                                  • 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














                                  310












                                  310








                                  310







                                  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.






                                  share|improve this answer















                                  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.







                                  share|improve this answer














                                  share|improve this answer



                                  share|improve this answer








                                  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













                                  • beacause titleLabel 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





                                    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






                                  • 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













                                  54














                                  For Swift 3.0:



                                  button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)


                                  where "boldSystemFont" and "16" can be replaced with your custom font and size.






                                  share|improve this answer




























                                    54














                                    For Swift 3.0:



                                    button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)


                                    where "boldSystemFont" and "16" can be replaced with your custom font and size.






                                    share|improve this answer


























                                      54












                                      54








                                      54







                                      For Swift 3.0:



                                      button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)


                                      where "boldSystemFont" and "16" can be replaced with your custom font and size.






                                      share|improve this answer













                                      For Swift 3.0:



                                      button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16)


                                      where "boldSystemFont" and "16" can be replaced with your custom font and size.







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Jan 6 '17 at 11:30









                                      ruthless_gruthless_g

                                      64154




                                      64154























                                          17














                                          Dot-notation is awesome (swift 4.2) 👌



                                          btn.titleLabel?.font = .systemFont(ofSize: 12)





                                          share|improve this answer


























                                          • 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
















                                          17














                                          Dot-notation is awesome (swift 4.2) 👌



                                          btn.titleLabel?.font = .systemFont(ofSize: 12)





                                          share|improve this answer


























                                          • 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














                                          17












                                          17








                                          17







                                          Dot-notation is awesome (swift 4.2) 👌



                                          btn.titleLabel?.font = .systemFont(ofSize: 12)





                                          share|improve this answer















                                          Dot-notation is awesome (swift 4.2) 👌



                                          btn.titleLabel?.font = .systemFont(ofSize: 12)






                                          share|improve this answer














                                          share|improve this answer



                                          share|improve this answer








                                          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



















                                          • 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











                                          7














                                          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.






                                          share|improve this answer




























                                            7














                                            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.






                                            share|improve this answer


























                                              7












                                              7








                                              7







                                              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.






                                              share|improve this answer













                                              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.







                                              share|improve this answer












                                              share|improve this answer



                                              share|improve this answer










                                              answered Mar 11 '16 at 19:34









                                              teradylteradyl

                                              1,0971220




                                              1,0971220























                                                  6














                                                  From the documentation:




                                                  The font used to display text on the button. (Deprecated in iOS 3.0. Use the font property of the titleLabel instead.)







                                                  share|improve this answer




























                                                    6














                                                    From the documentation:




                                                    The font used to display text on the button. (Deprecated in iOS 3.0. Use the font property of the titleLabel instead.)







                                                    share|improve this answer


























                                                      6












                                                      6








                                                      6







                                                      From the documentation:




                                                      The font used to display text on the button. (Deprecated in iOS 3.0. Use the font property of the titleLabel instead.)







                                                      share|improve this answer













                                                      From the documentation:




                                                      The font used to display text on the button. (Deprecated in iOS 3.0. Use the font property of the titleLabel instead.)








                                                      share|improve this answer












                                                      share|improve this answer



                                                      share|improve this answer










                                                      answered Jul 28 '14 at 18:42









                                                      zneakzneak

                                                      98.5k31212276




                                                      98.5k31212276























                                                          5














                                                          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.






                                                          share|improve this answer




























                                                            5














                                                            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.






                                                            share|improve this answer


























                                                              5












                                                              5








                                                              5







                                                              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.






                                                              share|improve this answer













                                                              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.







                                                              share|improve this answer












                                                              share|improve this answer



                                                              share|improve this answer










                                                              answered Apr 19 '16 at 12:50









                                                              Dave GDave G

                                                              6,24363661




                                                              6,24363661























                                                                  4














                                                                  You should go through the titleLabel property.



                                                                  button.titleLabel.font



                                                                  The font property has been deprecated since iOS 3.0.






                                                                  share|improve this answer




























                                                                    4














                                                                    You should go through the titleLabel property.



                                                                    button.titleLabel.font



                                                                    The font property has been deprecated since iOS 3.0.






                                                                    share|improve this answer


























                                                                      4












                                                                      4








                                                                      4







                                                                      You should go through the titleLabel property.



                                                                      button.titleLabel.font



                                                                      The font property has been deprecated since iOS 3.0.






                                                                      share|improve this answer













                                                                      You should go through the titleLabel property.



                                                                      button.titleLabel.font



                                                                      The font property has been deprecated since iOS 3.0.







                                                                      share|improve this answer












                                                                      share|improve this answer



                                                                      share|improve this answer










                                                                      answered Jul 28 '14 at 18:43









                                                                      Chris WagnerChris Wagner

                                                                      17.4k76689




                                                                      17.4k76689























                                                                          4














                                                                          Take a look here.



                                                                          You should set the font of the button's titleLabel instead.



                                                                          myButton.titleLabel!.font = UIFont(name: "...", 10)





                                                                          share|improve this answer


























                                                                          • this is wrong you need myButton.titleLabel!.font

                                                                            – Sam B
                                                                            Sep 30 '14 at 13:34
















                                                                          4














                                                                          Take a look here.



                                                                          You should set the font of the button's titleLabel instead.



                                                                          myButton.titleLabel!.font = UIFont(name: "...", 10)





                                                                          share|improve this answer


























                                                                          • this is wrong you need myButton.titleLabel!.font

                                                                            – Sam B
                                                                            Sep 30 '14 at 13:34














                                                                          4












                                                                          4








                                                                          4







                                                                          Take a look here.



                                                                          You should set the font of the button's titleLabel instead.



                                                                          myButton.titleLabel!.font = UIFont(name: "...", 10)





                                                                          share|improve this answer















                                                                          Take a look here.



                                                                          You should set the font of the button's titleLabel instead.



                                                                          myButton.titleLabel!.font = UIFont(name: "...", 10)






                                                                          share|improve this answer














                                                                          share|improve this answer



                                                                          share|improve this answer








                                                                          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



















                                                                          • 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











                                                                          4














                                                                          This works in Swift 3.0:



                                                                          btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20) 





                                                                          share|improve this answer






























                                                                            4














                                                                            This works in Swift 3.0:



                                                                            btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20) 





                                                                            share|improve this answer




























                                                                              4












                                                                              4








                                                                              4







                                                                              This works in Swift 3.0:



                                                                              btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20) 





                                                                              share|improve this answer















                                                                              This works in Swift 3.0:



                                                                              btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20) 






                                                                              share|improve this answer














                                                                              share|improve this answer



                                                                              share|improve this answer








                                                                              edited Aug 21 '17 at 7:25









                                                                              Bugs

                                                                              4,14992537




                                                                              4,14992537










                                                                              answered Aug 21 '17 at 7:15









                                                                              ramram

                                                                              592




                                                                              592























                                                                                  3














                                                                                  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)





                                                                                  share|improve this answer




























                                                                                    3














                                                                                    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)





                                                                                    share|improve this answer


























                                                                                      3












                                                                                      3








                                                                                      3







                                                                                      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)





                                                                                      share|improve this answer













                                                                                      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)






                                                                                      share|improve this answer












                                                                                      share|improve this answer



                                                                                      share|improve this answer










                                                                                      answered Apr 26 '18 at 5:42









                                                                                      Anirudha MahaleAnirudha Mahale

                                                                                      5671719




                                                                                      5671719























                                                                                          2














                                                                                          If you need to change only size (Swift 4.0):



                                                                                          button.titleLabel?.font = button.titleLabel?.font.withSize(12)





                                                                                          share|improve this answer




























                                                                                            2














                                                                                            If you need to change only size (Swift 4.0):



                                                                                            button.titleLabel?.font = button.titleLabel?.font.withSize(12)





                                                                                            share|improve this answer


























                                                                                              2












                                                                                              2








                                                                                              2







                                                                                              If you need to change only size (Swift 4.0):



                                                                                              button.titleLabel?.font = button.titleLabel?.font.withSize(12)





                                                                                              share|improve this answer













                                                                                              If you need to change only size (Swift 4.0):



                                                                                              button.titleLabel?.font = button.titleLabel?.font.withSize(12)






                                                                                              share|improve this answer












                                                                                              share|improve this answer



                                                                                              share|improve this answer










                                                                                              answered Sep 16 '18 at 21:51









                                                                                              KarbamanKarbaman

                                                                                              1,9461611




                                                                                              1,9461611























                                                                                                  2














                                                                                                  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)





                                                                                                  share|improve this answer




























                                                                                                    2














                                                                                                    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)





                                                                                                    share|improve this answer


























                                                                                                      2












                                                                                                      2








                                                                                                      2







                                                                                                      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)





                                                                                                      share|improve this answer













                                                                                                      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)






                                                                                                      share|improve this answer












                                                                                                      share|improve this answer



                                                                                                      share|improve this answer










                                                                                                      answered Jan 1 at 7:40









                                                                                                      Sultan AliSultan Ali

                                                                                                      512514




                                                                                                      512514























                                                                                                          1














                                                                                                          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)





                                                                                                          share|improve this answer




























                                                                                                            1














                                                                                                            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)





                                                                                                            share|improve this answer


























                                                                                                              1












                                                                                                              1








                                                                                                              1







                                                                                                              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)





                                                                                                              share|improve this answer













                                                                                                              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)






                                                                                                              share|improve this answer












                                                                                                              share|improve this answer



                                                                                                              share|improve this answer










                                                                                                              answered Jan 25 '17 at 15:38









                                                                                                              RealNmaeRealNmae

                                                                                                              336413




                                                                                                              336413























                                                                                                                  1














                                                                                                                  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"






                                                                                                                  share|improve this answer




























                                                                                                                    1














                                                                                                                    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"






                                                                                                                    share|improve this answer


























                                                                                                                      1












                                                                                                                      1








                                                                                                                      1







                                                                                                                      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"






                                                                                                                      share|improve this answer













                                                                                                                      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"







                                                                                                                      share|improve this answer












                                                                                                                      share|improve this answer



                                                                                                                      share|improve this answer










                                                                                                                      answered Nov 19 '17 at 12:03









                                                                                                                      janazjanaz

                                                                                                                      31827




                                                                                                                      31827























                                                                                                                          0














                                                                                                                          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))






                                                                                                                          share|improve this answer




























                                                                                                                            0














                                                                                                                            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))






                                                                                                                            share|improve this answer


























                                                                                                                              0












                                                                                                                              0








                                                                                                                              0







                                                                                                                              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))






                                                                                                                              share|improve this answer













                                                                                                                              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))







                                                                                                                              share|improve this answer












                                                                                                                              share|improve this answer



                                                                                                                              share|improve this answer










                                                                                                                              answered Aug 14 '18 at 2:51









                                                                                                                              mahasammahasam

                                                                                                                              62968




                                                                                                                              62968






























                                                                                                                                  draft saved

                                                                                                                                  draft discarded




















































                                                                                                                                  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.




                                                                                                                                  draft saved


                                                                                                                                  draft discarded














                                                                                                                                  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





















































                                                                                                                                  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







                                                                                                                                  Popular posts from this blog

                                                                                                                                  MongoDB - Not Authorized To Execute Command

                                                                                                                                  in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                                                                                                                                  How to fix TextFormField cause rebuild widget in Flutter