UILabel Text Not Wrapping












22















I am working on a Swift project with Storyboards where I want text to wrap in a label. In the old Objective-C version where I did not use a Storyboard I used the following settings and things worked perfectly.



Objective-C without Storyboard Settings



Here are the settings for Swift



Swift with Storyboard Settings



I have been reading about the potential auto layout issues with preferred width settings. I currently have them set to auto layout and the label itself is set to a width of 560. I've added a constraint to keep the label 20 pixels from the trailing superview and while I thought this would work I still cannot get the text to wrap. The dimension settings are below.



Label Dimension and Constraints



Can someone explain how to get the text to wrap?










share|improve this question

























  • My mistake on the terminology. I meant to say Storyboards not Playgrounds.

    – jonthornham
    May 26 '15 at 2:37











  • That's an improvement, but please note also that this has nothing to do with Swift or Objective-C. You should remove all reference to language from your question. If you previously didn't use a storyboard, then the contrast would be between code and storyboard, or between .xib file and storyboard.

    – matt
    May 26 '15 at 2:52


















22















I am working on a Swift project with Storyboards where I want text to wrap in a label. In the old Objective-C version where I did not use a Storyboard I used the following settings and things worked perfectly.



Objective-C without Storyboard Settings



Here are the settings for Swift



Swift with Storyboard Settings



I have been reading about the potential auto layout issues with preferred width settings. I currently have them set to auto layout and the label itself is set to a width of 560. I've added a constraint to keep the label 20 pixels from the trailing superview and while I thought this would work I still cannot get the text to wrap. The dimension settings are below.



Label Dimension and Constraints



Can someone explain how to get the text to wrap?










share|improve this question

























  • My mistake on the terminology. I meant to say Storyboards not Playgrounds.

    – jonthornham
    May 26 '15 at 2:37











  • That's an improvement, but please note also that this has nothing to do with Swift or Objective-C. You should remove all reference to language from your question. If you previously didn't use a storyboard, then the contrast would be between code and storyboard, or between .xib file and storyboard.

    – matt
    May 26 '15 at 2:52
















22












22








22


6






I am working on a Swift project with Storyboards where I want text to wrap in a label. In the old Objective-C version where I did not use a Storyboard I used the following settings and things worked perfectly.



Objective-C without Storyboard Settings



Here are the settings for Swift



Swift with Storyboard Settings



I have been reading about the potential auto layout issues with preferred width settings. I currently have them set to auto layout and the label itself is set to a width of 560. I've added a constraint to keep the label 20 pixels from the trailing superview and while I thought this would work I still cannot get the text to wrap. The dimension settings are below.



Label Dimension and Constraints



Can someone explain how to get the text to wrap?










share|improve this question
















I am working on a Swift project with Storyboards where I want text to wrap in a label. In the old Objective-C version where I did not use a Storyboard I used the following settings and things worked perfectly.



Objective-C without Storyboard Settings



Here are the settings for Swift



Swift with Storyboard Settings



I have been reading about the potential auto layout issues with preferred width settings. I currently have them set to auto layout and the label itself is set to a width of 560. I've added a constraint to keep the label 20 pixels from the trailing superview and while I thought this would work I still cannot get the text to wrap. The dimension settings are below.



Label Dimension and Constraints



Can someone explain how to get the text to wrap?







swift storyboard autolayout uilabel






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 26 '15 at 2:36







jonthornham

















asked May 25 '15 at 22:56









jonthornhamjonthornham

8021915




8021915













  • My mistake on the terminology. I meant to say Storyboards not Playgrounds.

    – jonthornham
    May 26 '15 at 2:37











  • That's an improvement, but please note also that this has nothing to do with Swift or Objective-C. You should remove all reference to language from your question. If you previously didn't use a storyboard, then the contrast would be between code and storyboard, or between .xib file and storyboard.

    – matt
    May 26 '15 at 2:52





















  • My mistake on the terminology. I meant to say Storyboards not Playgrounds.

    – jonthornham
    May 26 '15 at 2:37











  • That's an improvement, but please note also that this has nothing to do with Swift or Objective-C. You should remove all reference to language from your question. If you previously didn't use a storyboard, then the contrast would be between code and storyboard, or between .xib file and storyboard.

    – matt
    May 26 '15 at 2:52



















My mistake on the terminology. I meant to say Storyboards not Playgrounds.

– jonthornham
May 26 '15 at 2:37





My mistake on the terminology. I meant to say Storyboards not Playgrounds.

– jonthornham
May 26 '15 at 2:37













That's an improvement, but please note also that this has nothing to do with Swift or Objective-C. You should remove all reference to language from your question. If you previously didn't use a storyboard, then the contrast would be between code and storyboard, or between .xib file and storyboard.

– matt
May 26 '15 at 2:52







That's an improvement, but please note also that this has nothing to do with Swift or Objective-C. You should remove all reference to language from your question. If you previously didn't use a storyboard, then the contrast would be between code and storyboard, or between .xib file and storyboard.

– matt
May 26 '15 at 2:52














6 Answers
6






active

oldest

votes


















63














First, the good news: You have set the label to 2 lines and Word Wrap. So it can wrap. Excellent.



Now you must make sure the label is tall enough. Either give it no height constraint, or give it a big enough height constraint that it can accommodate two lines.



Finally, you must limit its width. This is what causes the text to wrap. If you don't limit the label's width, it will just keep growing rightward, potentially continuing off the screen. The limit on the label's width stops this rightward growth and causes the text to wrap (and the label to grow downward instead).



You can limit width in several ways. You can have an actual width constraints. Or you can have a leading constraint and a trailing constraint, to something relatively immovable, such as the superview. And there is a third way: on the Size inspector (which you do also show, at the bottom right of your question), set the Preferred Width (it is shown at the top of the Size inspector): this is the width at which, all other things being equal, the label will stop growing to the right and wrap and grow down instead.






share|improve this answer



















  • 1





    "Either give it no height constraint" - That was it for me!

    – Siddhartha
    Dec 31 '15 at 23:11











  • "Finally, you must limit its width" this worked for me. My xib had broken width constraint that it was keep setting line number to 1.

    – green0range
    May 10 '17 at 20:21



















6














Declare your UILabel programmatically and give



yourUILabel.contentMode = .scaleToFill
yourUILabel.numberOfLines = 0
yourUILabel.leadingMargin(pixel: 10)
yourUILabel.trailingMargin(pixel: 10)


This worked for me.






share|improve this answer

































    1














    Your text will wrap if you have provided lines number more than 1. However you may not be able to see it wrap if the label height is not enough to show the content. I suggest you to remove the height constraint or increase its value.






    share|improve this answer


























    • I tried this and I had no luck. Regardless, thanks for the input.

      – jonthornham
      May 26 '15 at 16:51



















    0














    What fixed this problem was changing the label type to "Placeholder" under Intrinsic Size in IB. When I changed this the text wrapped and the warnings went away.






    share|improve this answer





















    • 2





      "Setting a design time intrinsic content size only affects a view while editing in Interface Builder. The view will not have this intrinsic content size at runtime."

      – static0886
      Jan 18 '16 at 15:34











    • @static0886 did you try this answer and find that it failed? This would be far from the strangest thing I've seen Interface Builder do that's contrary to the documentation.

      – nolanw
      Oct 2 '17 at 17:03



















    0














    In case this helps anybody: I had followed the advice given here to fix my label not wrapping to two lines but nothing worked. What worked for me was I first deleted some of the relevant constraints in storyboard (I'm using auto layout) and saw that the label wrapped properly. I slowly added back the constraints I needed and everything still seems to work fine. So deleting and remaking your constraints may help.






    share|improve this answer































      0














      As I see you interface builder. There are two problems. First one is with your constraints, and another one is with the property.





      1. You gave it a fixed height which is wrong while line wrap. You need to make the auto-resizing label, i.e. remove height and add the bottom constraint or simple remove height depend on your situation. Your text is moving to the next line, but due to fixed constraint, you can't see it.


      2. You enable the option to clip subviews which is wrong as it cuts your view and you are unable to view wrap word.






      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%2f30447034%2fuilabel-text-not-wrapping%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        6 Answers
        6






        active

        oldest

        votes








        6 Answers
        6






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        63














        First, the good news: You have set the label to 2 lines and Word Wrap. So it can wrap. Excellent.



        Now you must make sure the label is tall enough. Either give it no height constraint, or give it a big enough height constraint that it can accommodate two lines.



        Finally, you must limit its width. This is what causes the text to wrap. If you don't limit the label's width, it will just keep growing rightward, potentially continuing off the screen. The limit on the label's width stops this rightward growth and causes the text to wrap (and the label to grow downward instead).



        You can limit width in several ways. You can have an actual width constraints. Or you can have a leading constraint and a trailing constraint, to something relatively immovable, such as the superview. And there is a third way: on the Size inspector (which you do also show, at the bottom right of your question), set the Preferred Width (it is shown at the top of the Size inspector): this is the width at which, all other things being equal, the label will stop growing to the right and wrap and grow down instead.






        share|improve this answer



















        • 1





          "Either give it no height constraint" - That was it for me!

          – Siddhartha
          Dec 31 '15 at 23:11











        • "Finally, you must limit its width" this worked for me. My xib had broken width constraint that it was keep setting line number to 1.

          – green0range
          May 10 '17 at 20:21
















        63














        First, the good news: You have set the label to 2 lines and Word Wrap. So it can wrap. Excellent.



        Now you must make sure the label is tall enough. Either give it no height constraint, or give it a big enough height constraint that it can accommodate two lines.



        Finally, you must limit its width. This is what causes the text to wrap. If you don't limit the label's width, it will just keep growing rightward, potentially continuing off the screen. The limit on the label's width stops this rightward growth and causes the text to wrap (and the label to grow downward instead).



        You can limit width in several ways. You can have an actual width constraints. Or you can have a leading constraint and a trailing constraint, to something relatively immovable, such as the superview. And there is a third way: on the Size inspector (which you do also show, at the bottom right of your question), set the Preferred Width (it is shown at the top of the Size inspector): this is the width at which, all other things being equal, the label will stop growing to the right and wrap and grow down instead.






        share|improve this answer



















        • 1





          "Either give it no height constraint" - That was it for me!

          – Siddhartha
          Dec 31 '15 at 23:11











        • "Finally, you must limit its width" this worked for me. My xib had broken width constraint that it was keep setting line number to 1.

          – green0range
          May 10 '17 at 20:21














        63












        63








        63







        First, the good news: You have set the label to 2 lines and Word Wrap. So it can wrap. Excellent.



        Now you must make sure the label is tall enough. Either give it no height constraint, or give it a big enough height constraint that it can accommodate two lines.



        Finally, you must limit its width. This is what causes the text to wrap. If you don't limit the label's width, it will just keep growing rightward, potentially continuing off the screen. The limit on the label's width stops this rightward growth and causes the text to wrap (and the label to grow downward instead).



        You can limit width in several ways. You can have an actual width constraints. Or you can have a leading constraint and a trailing constraint, to something relatively immovable, such as the superview. And there is a third way: on the Size inspector (which you do also show, at the bottom right of your question), set the Preferred Width (it is shown at the top of the Size inspector): this is the width at which, all other things being equal, the label will stop growing to the right and wrap and grow down instead.






        share|improve this answer













        First, the good news: You have set the label to 2 lines and Word Wrap. So it can wrap. Excellent.



        Now you must make sure the label is tall enough. Either give it no height constraint, or give it a big enough height constraint that it can accommodate two lines.



        Finally, you must limit its width. This is what causes the text to wrap. If you don't limit the label's width, it will just keep growing rightward, potentially continuing off the screen. The limit on the label's width stops this rightward growth and causes the text to wrap (and the label to grow downward instead).



        You can limit width in several ways. You can have an actual width constraints. Or you can have a leading constraint and a trailing constraint, to something relatively immovable, such as the superview. And there is a third way: on the Size inspector (which you do also show, at the bottom right of your question), set the Preferred Width (it is shown at the top of the Size inspector): this is the width at which, all other things being equal, the label will stop growing to the right and wrap and grow down instead.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 26 '15 at 2:50









        mattmatt

        325k46525725




        325k46525725








        • 1





          "Either give it no height constraint" - That was it for me!

          – Siddhartha
          Dec 31 '15 at 23:11











        • "Finally, you must limit its width" this worked for me. My xib had broken width constraint that it was keep setting line number to 1.

          – green0range
          May 10 '17 at 20:21














        • 1





          "Either give it no height constraint" - That was it for me!

          – Siddhartha
          Dec 31 '15 at 23:11











        • "Finally, you must limit its width" this worked for me. My xib had broken width constraint that it was keep setting line number to 1.

          – green0range
          May 10 '17 at 20:21








        1




        1





        "Either give it no height constraint" - That was it for me!

        – Siddhartha
        Dec 31 '15 at 23:11





        "Either give it no height constraint" - That was it for me!

        – Siddhartha
        Dec 31 '15 at 23:11













        "Finally, you must limit its width" this worked for me. My xib had broken width constraint that it was keep setting line number to 1.

        – green0range
        May 10 '17 at 20:21





        "Finally, you must limit its width" this worked for me. My xib had broken width constraint that it was keep setting line number to 1.

        – green0range
        May 10 '17 at 20:21













        6














        Declare your UILabel programmatically and give



        yourUILabel.contentMode = .scaleToFill
        yourUILabel.numberOfLines = 0
        yourUILabel.leadingMargin(pixel: 10)
        yourUILabel.trailingMargin(pixel: 10)


        This worked for me.






        share|improve this answer






























          6














          Declare your UILabel programmatically and give



          yourUILabel.contentMode = .scaleToFill
          yourUILabel.numberOfLines = 0
          yourUILabel.leadingMargin(pixel: 10)
          yourUILabel.trailingMargin(pixel: 10)


          This worked for me.






          share|improve this answer




























            6












            6








            6







            Declare your UILabel programmatically and give



            yourUILabel.contentMode = .scaleToFill
            yourUILabel.numberOfLines = 0
            yourUILabel.leadingMargin(pixel: 10)
            yourUILabel.trailingMargin(pixel: 10)


            This worked for me.






            share|improve this answer















            Declare your UILabel programmatically and give



            yourUILabel.contentMode = .scaleToFill
            yourUILabel.numberOfLines = 0
            yourUILabel.leadingMargin(pixel: 10)
            yourUILabel.trailingMargin(pixel: 10)


            This worked for me.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 13 '18 at 10:02

























            answered Dec 28 '17 at 7:53









            Vignesh rajaVignesh raja

            7114




            7114























                1














                Your text will wrap if you have provided lines number more than 1. However you may not be able to see it wrap if the label height is not enough to show the content. I suggest you to remove the height constraint or increase its value.






                share|improve this answer


























                • I tried this and I had no luck. Regardless, thanks for the input.

                  – jonthornham
                  May 26 '15 at 16:51
















                1














                Your text will wrap if you have provided lines number more than 1. However you may not be able to see it wrap if the label height is not enough to show the content. I suggest you to remove the height constraint or increase its value.






                share|improve this answer


























                • I tried this and I had no luck. Regardless, thanks for the input.

                  – jonthornham
                  May 26 '15 at 16:51














                1












                1








                1







                Your text will wrap if you have provided lines number more than 1. However you may not be able to see it wrap if the label height is not enough to show the content. I suggest you to remove the height constraint or increase its value.






                share|improve this answer















                Your text will wrap if you have provided lines number more than 1. However you may not be able to see it wrap if the label height is not enough to show the content. I suggest you to remove the height constraint or increase its value.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jul 6 '16 at 15:38









                Forge

                4,18453045




                4,18453045










                answered May 26 '15 at 7:44









                Aman JainAman Jain

                83128




                83128













                • I tried this and I had no luck. Regardless, thanks for the input.

                  – jonthornham
                  May 26 '15 at 16:51



















                • I tried this and I had no luck. Regardless, thanks for the input.

                  – jonthornham
                  May 26 '15 at 16:51

















                I tried this and I had no luck. Regardless, thanks for the input.

                – jonthornham
                May 26 '15 at 16:51





                I tried this and I had no luck. Regardless, thanks for the input.

                – jonthornham
                May 26 '15 at 16:51











                0














                What fixed this problem was changing the label type to "Placeholder" under Intrinsic Size in IB. When I changed this the text wrapped and the warnings went away.






                share|improve this answer





















                • 2





                  "Setting a design time intrinsic content size only affects a view while editing in Interface Builder. The view will not have this intrinsic content size at runtime."

                  – static0886
                  Jan 18 '16 at 15:34











                • @static0886 did you try this answer and find that it failed? This would be far from the strangest thing I've seen Interface Builder do that's contrary to the documentation.

                  – nolanw
                  Oct 2 '17 at 17:03
















                0














                What fixed this problem was changing the label type to "Placeholder" under Intrinsic Size in IB. When I changed this the text wrapped and the warnings went away.






                share|improve this answer





















                • 2





                  "Setting a design time intrinsic content size only affects a view while editing in Interface Builder. The view will not have this intrinsic content size at runtime."

                  – static0886
                  Jan 18 '16 at 15:34











                • @static0886 did you try this answer and find that it failed? This would be far from the strangest thing I've seen Interface Builder do that's contrary to the documentation.

                  – nolanw
                  Oct 2 '17 at 17:03














                0












                0








                0







                What fixed this problem was changing the label type to "Placeholder" under Intrinsic Size in IB. When I changed this the text wrapped and the warnings went away.






                share|improve this answer















                What fixed this problem was changing the label type to "Placeholder" under Intrinsic Size in IB. When I changed this the text wrapped and the warnings went away.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 14 '17 at 13:16









                Forge

                4,18453045




                4,18453045










                answered Jun 1 '15 at 19:13









                jonthornhamjonthornham

                8021915




                8021915








                • 2





                  "Setting a design time intrinsic content size only affects a view while editing in Interface Builder. The view will not have this intrinsic content size at runtime."

                  – static0886
                  Jan 18 '16 at 15:34











                • @static0886 did you try this answer and find that it failed? This would be far from the strangest thing I've seen Interface Builder do that's contrary to the documentation.

                  – nolanw
                  Oct 2 '17 at 17:03














                • 2





                  "Setting a design time intrinsic content size only affects a view while editing in Interface Builder. The view will not have this intrinsic content size at runtime."

                  – static0886
                  Jan 18 '16 at 15:34











                • @static0886 did you try this answer and find that it failed? This would be far from the strangest thing I've seen Interface Builder do that's contrary to the documentation.

                  – nolanw
                  Oct 2 '17 at 17:03








                2




                2





                "Setting a design time intrinsic content size only affects a view while editing in Interface Builder. The view will not have this intrinsic content size at runtime."

                – static0886
                Jan 18 '16 at 15:34





                "Setting a design time intrinsic content size only affects a view while editing in Interface Builder. The view will not have this intrinsic content size at runtime."

                – static0886
                Jan 18 '16 at 15:34













                @static0886 did you try this answer and find that it failed? This would be far from the strangest thing I've seen Interface Builder do that's contrary to the documentation.

                – nolanw
                Oct 2 '17 at 17:03





                @static0886 did you try this answer and find that it failed? This would be far from the strangest thing I've seen Interface Builder do that's contrary to the documentation.

                – nolanw
                Oct 2 '17 at 17:03











                0














                In case this helps anybody: I had followed the advice given here to fix my label not wrapping to two lines but nothing worked. What worked for me was I first deleted some of the relevant constraints in storyboard (I'm using auto layout) and saw that the label wrapped properly. I slowly added back the constraints I needed and everything still seems to work fine. So deleting and remaking your constraints may help.






                share|improve this answer




























                  0














                  In case this helps anybody: I had followed the advice given here to fix my label not wrapping to two lines but nothing worked. What worked for me was I first deleted some of the relevant constraints in storyboard (I'm using auto layout) and saw that the label wrapped properly. I slowly added back the constraints I needed and everything still seems to work fine. So deleting and remaking your constraints may help.






                  share|improve this answer


























                    0












                    0








                    0







                    In case this helps anybody: I had followed the advice given here to fix my label not wrapping to two lines but nothing worked. What worked for me was I first deleted some of the relevant constraints in storyboard (I'm using auto layout) and saw that the label wrapped properly. I slowly added back the constraints I needed and everything still seems to work fine. So deleting and remaking your constraints may help.






                    share|improve this answer













                    In case this helps anybody: I had followed the advice given here to fix my label not wrapping to two lines but nothing worked. What worked for me was I first deleted some of the relevant constraints in storyboard (I'm using auto layout) and saw that the label wrapped properly. I slowly added back the constraints I needed and everything still seems to work fine. So deleting and remaking your constraints may help.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Oct 15 '17 at 8:56









                    Ed ManningEd Manning

                    84




                    84























                        0














                        As I see you interface builder. There are two problems. First one is with your constraints, and another one is with the property.





                        1. You gave it a fixed height which is wrong while line wrap. You need to make the auto-resizing label, i.e. remove height and add the bottom constraint or simple remove height depend on your situation. Your text is moving to the next line, but due to fixed constraint, you can't see it.


                        2. You enable the option to clip subviews which is wrong as it cuts your view and you are unable to view wrap word.






                        share|improve this answer






























                          0














                          As I see you interface builder. There are two problems. First one is with your constraints, and another one is with the property.





                          1. You gave it a fixed height which is wrong while line wrap. You need to make the auto-resizing label, i.e. remove height and add the bottom constraint or simple remove height depend on your situation. Your text is moving to the next line, but due to fixed constraint, you can't see it.


                          2. You enable the option to clip subviews which is wrong as it cuts your view and you are unable to view wrap word.






                          share|improve this answer




























                            0












                            0








                            0







                            As I see you interface builder. There are two problems. First one is with your constraints, and another one is with the property.





                            1. You gave it a fixed height which is wrong while line wrap. You need to make the auto-resizing label, i.e. remove height and add the bottom constraint or simple remove height depend on your situation. Your text is moving to the next line, but due to fixed constraint, you can't see it.


                            2. You enable the option to clip subviews which is wrong as it cuts your view and you are unable to view wrap word.






                            share|improve this answer















                            As I see you interface builder. There are two problems. First one is with your constraints, and another one is with the property.





                            1. You gave it a fixed height which is wrong while line wrap. You need to make the auto-resizing label, i.e. remove height and add the bottom constraint or simple remove height depend on your situation. Your text is moving to the next line, but due to fixed constraint, you can't see it.


                            2. You enable the option to clip subviews which is wrong as it cuts your view and you are unable to view wrap word.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Nov 1 '18 at 12:51

























                            answered Nov 1 '18 at 12:42









                            Rehan AliRehan Ali

                            11114




                            11114






























                                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%2f30447034%2fuilabel-text-not-wrapping%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

                                The Sandy Post

                                Danny Elfman

                                Pages that link to "Head v. Amoskeag Manufacturing Co."